jQuery(document).ready(function(){
  if (screen.height < 1200)
  {
   //jQuery('#wrapper').addClass('smallscreen');
  }
  
  jQuery('ul#menu li').removeClass('nojs');
  
  jQuery('ul#menu li').hover(function(){
    jQuery('ul', this).stop().animate({
        bottom: '0'
      }, { queue: false, duration: 300 });
  }, function(){
    jQuery('ul', this).stop().animate({
        bottom: '-53px'
      }, { queue: false, duration: 300 });
  });
  
  jQuery('#actu').vTicker({
    speed: 500,
    pause: 8000,
    showItems: 1,
    animation: 'fade',
    mousePause: true,
    height: 210,
    direction: 'up'
  });
});

$(function() {
            $(this).bind("contextmenu", function( e ) {
                e.preventDefault();
            });
        });
