$(function() {
  $("#page").css("width","0px");
  $("#page").css("height","58px");
  $("#page #pic").css("display","none");
  // ON LOAD FUNCTION
  $(window).load(function() {
    $("div#page").animate({ width: "350px" }, 2000, function() {$("div#page").animate({ height: "405px" }, 2000, function() {$("#page #pic").fadeIn(1000);});
    });  
  });

  /*$("div#menu A").hover(function() {
    $(this).stop().animate({ color: "#000000" }, 1000);},function () { 
    $(this).stop().animate({color:'#ffffff'}, 800);
  });*/
});

