$(document).ready(function (){ChangeJourNuit();});


function ChangeJourNuit(){
	Maintenant = new Date();
	Month = Maintenant.getMonth();
	Hours = Maintenant.getHours();


	if (Hours>6 && Hours<21) {
		if ($("#chapelle").attr("class")!="chapelle_jour"){
			$("#chapelle").removeClass();
			$("#fond").removeClass();
			$("#chapelle").addClass("chapelle_jour");
			$("#fond").addClass("fond_jour");
		}		
	} else {
		if ($("#chapelle").attr("class")!="chapelle_nuit"){
			$("#chapelle").removeClass();
			$("#fond").removeClass();
			$("#chapelle").addClass("chapelle_nuit");
			$("#fond").addClass("fond_nuit");
		}
		
	}	
	tempo = setTimeout("ChangeJourNuit()", 10000);

}


$(function(){
	$('#centre a').Tooltip({ 
		track: true,
		showURL: false,
		delay: 0
	});

});



















