$(document).ready(function() {
	$('.image').click(function() {				
		var selected = $(this).hasClass('selected');
		if (!selected) {
			$('.selected').find('.photo').animate({width: '12px', height: '12px'},'fast',null,function() { $(this).css('z-index','1').css('border','0'); });
			$(this).addClass('selected').find('.photo').css('z-index','5').css('border','5px solid #666').animate({width: '75px', height: '75px'},'fast');
		} else {
			$(this).removeClass('selected').find('.photo').animate({width: '12px', height: '12px'},'fast',null,function() { $(this).css('z-index','1').css('border','0'); });
		}
	});
});