jQuery(function($) {

jQuery('div.photo-list span').fadeOut(0);

jQuery('div.photo-list')
	.hover(
		function(){ jQuery(this).find('span').fadeIn(1000); },
		function(){ jQuery(this).find('span').fadeOut(1000); }
	);
	
jQuery("input[type='checkbox']").click(function(){
 	if (this.checked == false)
 	{
 		var _id = jQuery(this).attr('id');
 		jQuery("div."+_id).animate({opacity: 0.3}, 1000);
 	}
 	else
 	{
 		var _id = jQuery(this).attr('id');
 		jQuery("div."+_id).animate({opacity: 1}, 1000);
 	}
 	
});

});
