var $ = jQuery.noConflict();$(document).ready(function(){   	/*--------------------------------------------------------		Page Image FancyBox	--------------------------------------------------------*/	$('.image-panel:not(.no-fancy) a[rel=imageGroup]').fancybox({		'padding'			: 0,		'centerOnScroll' 	: true,		'overlayColor'		:'#000',		'overlayOpacity'	: .8,		'titlePosition'		: 'inside'	});		/*--------------------------------------------------------		Vertically center images inside a	--------------------------------------------------------*/	$('a:has(img)').each(function(){		var aHeight = $(this).height();		var imgHeight = $(this).find('img').height();		if(aHeight > imgHeight)		{			var diffHeight = aHeight - imgHeight;			$(this).find('img').css({'paddingTop' : (diffHeight/2)});		}		});		/*--------------------------------------------------------		Remove Img titles	--------------------------------------------------------*/	$('.view-exhibition a[title] img').removeAttr('title');		/*--------------------------------------------------------		Contact Scroll	--------------------------------------------------------*/	$('.nav li a[title=Contact Us]').attr('href', '#days');	$('.nav li a[title=Contact Us]').click(function(){		var scrollToY = $('body').outerHeight() - $(window).height(); 		$('html, body').animate({			scrollTop: scrollToY		}, 1500);		return false;	})});
