//RECUPERATION TEMPERATURE
 $(document).ready(function() {
    var destination = $(".boxWeather .part_right #temperature_min_max .min")
    var source = "weatherforecast-getpagecontent.html";
    var cequejeveux = source +" .weatherForecastWeekday .temperature_min:first";
    destination.load(cequejeveux);
  
    var destination2 = $(".boxWeather .part_right #temperature_min_max .max")
    var cequejeveux2 = source +" .weatherForecastWeekday .temperature_max:first";
    destination2.load(cequejeveux2);  
	
});
