$(function(){
	// Nouvelle fenêtre
	$('a.newWindow').click(function(){
		window.open(this.href);
		return false;
	});
	
	// Diaporama
	$('#header .diaporama').diaporama();
	
	// Menu
	$('#map-menu area.hebergements').hover(function(){
		$('#sous-menu').show();
	}, function(){});
	$('#sous-menu').hover(function(){}, function(){
		$(this).hide();
	});
});
