// CUSTOMIZATION
$(document).ready(
	function(){ 
		$('a img').addClass('fade_foto'); 
		$('#colLeft a[href$=".jpg"]').attr('rel', 'prettyPhoto[pp_gal]');
	}
);
$(document).ready(function(){
	$('.fade_foto').hover(function(){
		this.check = this.check || 1;
		$(this).stop().fadeTo('fast',this.check++%2==0 ? 1 : 0.4);
	});
});
