//var prefix='/fon/gase/';
//var prefix='/';


window.onload= function(){
    $("body").animate({"backgroundColor": "#f5f5dc"}, 800);
       $("#logo").fadeIn(1000, function(){
            $("#inlogotext").animate({"left": "0"} ,800, 'easeOutQuad');
            $("#enter").fadeIn(600);
        });
}

$(document).ready(function(){

    jQuery.preloadImages = function() {
          for(var i = 0; i<arguments.length; i++) {
                jQuery("<img>").attr("src", prefix+arguments[i]);
          }
    }
   // $(document).pngFix();

   $.preloadImages("images/start_logo.png");

        

    


    $("#enter a").click(function(){
        urlhref=$(this).attr("href");
        $(this).stop();
        $("#logo, #enter, #inlogotext").fadeOut(600,function(){
            document.location=urlhref;
        });

        setTimeout('document.location=urlhref', 600);
        return false;
    });



});