// Comportement site Syndicat Pays Yon et Vie (jquery nécessaire) 
// Changement taille de la police
		var t;	
		//t = 70;		
		t = 100;
	function changerTaille(modif) {
	t = t + modif;
	//document.getElementsByTagName("body")[0].style.fontSize = t + "%";	
	document.getElementById('main').style.fontSize = t + "%";		
	}
	
//////


//RECUPERATION TEMPERATURE
 $(document).ready(function() {
    var destination = $(".boxweather .part_right #temperature_min_max .min")
    var source = "weatherforecast-getpagecontent.html";
    var cequejeveux = source +" .weather_forecast_weekday .temperature_min:first";
    destination.load(cequejeveux);
  
    var destination2 = $(".boxweather .part_right #temperature_min_max .max")
    var cequejeveux2 = source +" .weather_forecast_weekday .temperature_max:first";
    destination2.load(cequejeveux2);  
	
	
	var destination4 = $("#banner #not_nested")
    var source4 = $(this);
	var cequejeveux4 = source4 + "#nested .third_level" ;
	destination4.load(cequejeveux4); 
	 
//AFFICHAGE MOTEUR DE RECHERCHE

$("#banner .moteur-recherche").hover(function() { //On hover...
		
		$(this).find("div.formsearch").stop().fadeTo('normal', 1 , function() {
			$(this).show() //Hide the image after fade
		}); 
	} , function() { //on hover out...
		//Fade the image to 1 
		$(this).find("div.formsearch").stop().fadeTo('normal', 0).hide();
	});
	
});
