jQuery(document).ready(function($){	
		
		function hideFlash(){
			$('#flash embed').css({"visibility":"hidden"});
		};
		
		function showFlash(){
			$('#flash embed').css({"visibility":"visible"});
		};
	
		
		$('a[rel=fancybox]').fancybox({ 
					'overlayShow'  		    : true,
					"overlayOpacity"  		: 0,
					"centerOnScroll"		:true,
					"callbackOnStart"		:hideFlash,
					"callbackOnClose"		:showFlash
										  		
		});			
});


