// JavaScript Document
$(function() {
	//$.preloadCssImages();
	//$("#accueil").fadeIn(800);
	//$('#m1').css("color","#1fb6b6");
	
	$("#tarifs :radio").attr('checked', false);
	
	
	$("#m3").click(function() { 
			$("#liste_acccueil").hide();
			$('#tarifs').fadeIn(800);
		$("#tarifs :radio").click(function() {

			showValues()});
	});
}); 

function showValues() {
	var str = $("#lestarifs").serialize();
	  var tableau_A=str.split('&');
	  if(tableau_A.length > 2){
	      		$.ajax({
				url: "action.php?"+str,
				type: "get",
				success: function(reponse) {
					$("#panotarif").html(reponse);
					$("#tarif").hide().fadeIn(2800);
				}});
		
	}else{
			$("#panotarif").html('<img id="imgload" src="images/ajax-loader.gif" width="50" height="50" style="margin-top:50px"/>');
			$("#imgload").hide().fadeIn(5800);
	}
}
