$(document).ready(function(){
	initCarte();
	setEventFootPartenariats();
	
	/*
	$('#Left ul li').bind('mouseover',function(){
		$(this).css('background','#B8A870');
	});
	
	$('#Left ul li').bind('mouseout',function(){
		$(this).css('background','#DFD9CB');
	});
	*/
	
	
});




/**
 * Affiche masque la carte flash des autres regions
 */
function initCarte(){
	
	$('#headTopAutre').bind('mouseover',function(){
		$('#HeadCarte').show();
	});
	
	$('#HeadCarte').bind('mouseout',function(){
		$(this).hide();
	});
	
}

/**
 * Affiche masque les partenariats du footer
 */
function setEventFootPartenariats(){
	$('#partenariats').toggle(
		function(e){
			$('#FootPartenariats').slideDown('normal');
			var pos=e.pageY - 10;			
			$('html,body').animate({scrollTop: pos }, 1000);
			return false;
		},function(){
			$('#FootPartenariats').slideUp('normal');
			return false;
		}
	);
}


