	$(document).ready(function() {
		$("a[rel=gal]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over',
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
			    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
			}
		});
	$(".videospot").fancybox({
        'autoScale'     	: true,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'padding'			: 5,
		'scrolling'		    : 'no',
		'width'        		: 500,
		'height'       		: 400
		
	});		
	
		$(".newthumbs img").fadeTo("fast", 0.6); 
		$(".newthumbs img").hover(function(){
			$(this).fadeTo("fast", 1.0); 
		},function(){
	   		$(this).fadeTo("fast", 0.6); 
		});	
		
});

