jQuery(document).ready(function($){
	
		$('#thumbs img.screennav').mouseover(function(){
			$(this).css('cursor', 'pointer');
	    });
	
		$('#thumbs img.screennav').click(function() {
			var slide = $(this).attr("rel");
			//alert(slide);
			$(this).parent("#thumbs").parent("#pictures").find(".screen").attr({ src: slide });
		});
	
$("a.quick_view").fancybox({
			'width'				:	635,
			'height'			:	500,
			'margin'			:	20,
			'padding'			:	20,
			'speedIn'			:	550, 
			'speedOut'			:	200, 
			'overlayShow'		:	true,
			'hideOnOverlayClick':	true,
			'hideOnContentClick':	false,
			'enableEscapeButton':	true,
			'showCloseButton'	:	true,
			'autoScale'			: 	false,
			'autoDimensions'	: 	false,
			'titlePosition'		: 'over',
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'centerOnScroll'	:	true
		}).center;
		
});

