$(document).ready(function(){
  $('#menu li ul').css({
    display: "none",
    left: "auto"
  });
  $('#menu li').hover(function() {
    $(this)
      .find('ul')
      .stop(true, true)
      .slideDown('fast');
  }, function() {
    $(this)
      .find('ul')
      .stop(true,true)
      .fadeOut('fast');
  });
 
});


$(function() {
            $(this).bind("contextmenu", function(e) {
                e.preventDefault();
            });
 }); 


$('.thb-accueil').cycle({
    fx:    'fade',
	speed:   3000, 
    sync:   true 
 });



