$(document).ready(function(){
  /*$("#menu").animate({marginLeft: 1}, "slow", function(){
    $("ul").slideDown("normal");
  });*/
  //$("#menu").animate({marginLeft: 1}, 1500);
  
  //$("#content").fadeIn(1500);
  
  /*$("div[class=article_content]").css({height: "200px"});
  
  var onAnimate = false;
  
  $("span[class=lienPlus]").click(function(){
    if(!onAnimate){
      onAnimate = true;
      $(this).parent("div[class=article_content]").animate({height: "100%"}, "fast", function(){onAnimate = false;});
    }
  });
  
  $("span[class=lienMoins]").click(function(){
    if(!onAnimate){
      onAnimate = true;
      $(this).parent("div[class=article_content]").animate({height: "200px"}, "normal", function(){onAnimate = false;});
    }
  });*/
});
