///////////////////////////////////////
// Smooth DIV - Changement de langue //
///////////////////////////////////////
  var obj = null;
   function checkHover() {
      if (obj) {
         obj.find('ul').fadeOut('fast');
      } //if
   } //checkHover
   $(document).ready(function() {
      $('#Nav > li').hover(function() {
         if (obj) {
            obj.find('ul').fadeOut('fast');
            obj = null;
         } //if

         $(this).find('ul').fadeIn('fast');
      }, function() {
        obj = $(this);
         setTimeout(
            "checkHover()",
            400);
      });
   });
////////////////////
// RECHERCHE Ajax //
////////////////////
function formatItem(row) {
	return row[0];
}
$(document).ready(function() {
	$("#inputRechercheDC132").autocomplete("./inc/search_en.php", {matchContains:0, minChars:2, matchSubset:1, matchContains:1, cacheLength:10, formatItem:formatItem, selectOnly:1 });
});



