$(document).ready(
	function(){ 
		$(document).pngFix(); 
		
		//$.fancybox.showActivity();
		
		$(".fbox").fancybox({
			'showCloseButton'	: true,
			'width' 			: 850,
			'height'			: 350,
			'type'				: 'iframe',
			'scrolling'			: 'no',
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayShow'		: true,
			'overlayOpacity'	: 0.4,
			'overlayColor'		: '#000',
			'showNavArrows'		: true,
			'showActivity'		: true,
			'enableEscapeButton': true
		});
		
		$('.thumbnail').hover(function(){
			$('.normal',this).hide();
			$('.over',this).show();
		},
		function(){
			$('.normal',this).show();
			$('.over',this).hide();
		});
	
	
}); 
