$(document).ready(function() {
	$('a[rel=lightbox]').click(function () {
		$('ul.photos li a').removeClass('active');
		$(this).addClass('active');
		$('#main_photo').attr('src',$(this).attr('href'));
		$('h3.photo_title').html($(this).attr('title'));
		return false;
	});
	$("ul#projects li img").hover(
		function () {
			var src = $(this).attr('src');
			$(this).attr('src', src.replace(/_grey\./, '.'));
		},
		function () {
			var src = $(this).attr('src');
			$(this).attr('src', src.substring(0, src.search(/(\.[a-z]+)$/) ) + '_grey' + src.match(/(\.[a-z]+)$/)[0]);
		}
	);
});
