$(document).ready(function(){
	
	
	$("#search_field_name").autocomplete("index.php?page=hotel_liste", {
		matchContains: true,
		minChars: 1
	});
	$('a.lightbox').lightBox();
	$('h3.titreQuery').click(function () { 
      if($(this).next().is(":hidden")){
		  $(this).next().slideDown("slow");
	  }
	  else {
		   $(this).next().slideUp();
	  }
	  $(this).next().show();
    });
	$(".envies-Voile").hide();
	$("ul.listeHerbegerment:empty").prev().hide();
	$("p.bread:empty").hide();
	$("ul.listeHerbegerment div.no-result").hide();
	//$("li:contains('rien_a_afficher')").hide();
	//$("ul:contains('   ')").prev().hide();
	//$("h2").next().is(":hidden").hide();
	
});

$(function() {
	$(".date input").datepicker({
		showOn: 'button', 
		buttonImage: '/images/calendar.gif', 
		buttonImageOnly: true,
		dateFormat: 'dd/mm/yy' });
});

