$(document).ready(function(){
    
    $('.zoomP').fancybox({
		width:'900',
		height:'450',
		autoDimensions:false
	});
    $('.zoomMaps').fancybox({
		width:'900',
		height:'450',
		onComplete : function(){
			map()
		},
		autoDimensions:false
	});
	
				
	$('.menu a').mouseover(function() {
		$(this).animate({ 'background-color': "#f5f5f5",'color':"#243868" },{ queue:false, duration:500 })
		$(this).addClass('current')
	}).mouseout(function(){
		$(this).animate({ 'background-color': "#0c1a4f",'color':"#ffffff" },{ queue:false, duration:500 })
		$(this).removeClass('current')
		checkSection()
	});	
    
})
