

/* 

Document ready

*/

// refresh du js de google pour l ajax
function loadAdsense(keywords) {
      var currentTime = new Date();
      googlead.location = "ads/as.php?unique_s=" +
      currentTime.getTime() + "&kws=" + keywords;
}

/* 
$(document).ready(function() {
	$('#s1').css('display','block');
	$('#s1').cycle('fade');
	$('#s2').css('display','block');
   	$('#s2').cycle('fade');
          
});
*/




function load_detail(id_entreprise)
{
	
	document.getElementById("contenu_detail_recherche").innerHTML = "<br /><br /><br /><br /><center><img src='images/ajax-loader.gif' /></center>";
	
	$.get("ajax.php", {type_query: "load_detail", id_entreprise: id_entreprise },
  	function(data)
  	{	
  			document.getElementById("contenu_detail_recherche").innerHTML = "";
			document.getElementById("contenu_detail_recherche").innerHTML = data;	
			loadAdsense("bottin,brossard,voiture,phones,bank");
  	});
}


function load_map(id_entreprise)
{
	
	$.get("ajax.php", {type_query: "load_map", id_entreprise: id_entreprise },
  	function(data)
  	{	
  			$.modal(data);
				
  	});	
}


function load_send_mail(id_entreprise)
{
	
	$.get("ajax.php", {type_query: "load_send_mail", id_entreprise: id_entreprise },
  	function(data)
  	{	
  			$.modal(data);
				
  	});	
}


function lettre_info()
{
	var mail = document.forms['form_newsletter'].elements['mail'].value;
	
	$.get("ajax.php", {type_query: "lettre_info", mail: mail },
  	function(data)
  	{	
  			$.modal(data);
				
  	});	
	
	
}
function load_site(id_entreprise)
{
	$.get("ajax.php", {type_query: "load_site", id_entreprise: id_entreprise },
  	function(data)
  	{	
  			
				
  	});	
}



// fonction javascript
function confirmer()
{
	
	
	document.recherche_bottin.submit();
	
}




