
$j(document).ready(function(){   
      $j("body div.intro_welcome").css("visibility","visible");
      $j("body div.intro_welcome").show("slow");

      $j("body div.intro_welcome div.button").click(function(){
        $j("body div.intro_welcome h1").fadeOut("slow");
        $j("body div.intro_welcome div.button").fadeOut("slow");
        $j("body div.intro_welcome button h1").fadeOut("slow");
        $j("body div.intro_welcome").slideUp(1500);
      });
      
    });
