 $(document).ready(function(){
  $('#menu-menu-principal .sub-menu').hide();
   $('#menu-menu-principal li').mouseenter(function(a){
       $(this).children('a').first().addClass('active');
       $(this).find('ul').css('display','block');
       $(this).find('ul').css('height','0px');
       $(this).find('ul').stop().animate({
          opacity: 1,
          height: Math.ceil($(this).find('ul li').length/2)*35
        }, 300);
   }).mouseleave(function(a){
       $(this).children('a').first().removeClass('active');
       $(this).find('ul').stop().animate({
          'opacity': 0,
          'height': '0px'
        }, 300,function(){
          $(this).find('ul').css('display','none');
        });
   });
   
   
   
    $('.sub-menu a').hover(function(){
      $(this).stop().animate({
        'background-position' : '3px',
        'text-indent' : '25px'
      },200);
    },function(){
       $(this).stop().animate({
        'background-position' : '-20px',
        'text-indent' : '0px'
      },200);
    });
    
    
                               
    
     $('.blogroll a,.widget_listcategorypostswidget a').hover(function(){
      $(this).stop().animate({
        'background-position' : '5px',
        'text-indent' : '10px'
      },200);
    },function(){
       $(this).stop().animate({
        'background-position' : '0px',
        'text-indent' : '0px'
      },200);
    });   
    
    $('#reseaux_sociaux a').hover(function(){
      $(this).stop().animate({
        'text-indent' : '10px'
      },200);
    },function(){
       $(this).stop().animate({
        'text-indent' : '0px'
      },200);
    });

     
    
});

