$(document).ready(function(){
  $("#introheader").css({opacity:0},0);
  $("#introlang img").css({opacity:0.7},0);
  $("#introheader img").animate({ marginTop: "0px" },2000);
  $("#introheader").animate({ opacity: 1},2000);

  $("#introlang img").hover(function(){
    $(this).stop().animate({opacity:1},200);
  }, function(){
    $(this).stop().animate({opacity:.7},200);
  });

});
