/* <![CDATA[ */

$(document).ready(function(){

$(".fancypic").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	$(".fancypic").hover(function() {
		$(this).css({'z-index' : '10'});
		$(this).find('img').addClass("hover").stop()
			.animate({
				opacity:'0.50'
			}, 200);
		
		} , function() {
		$(this).css({'z-index' : '0'});
		$(this).find('img').removeClass("hover").stop()
			.animate({
			
				opacity:'1'
			}, 300);
	});


});

/* ]]> */
