/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function showLogo(){
    //if ((jQuery.browser.msie==true)&&(jQuery.browser.version==8.0))
      //  $("#hidden").show(2000);
    //else
        $("#hidden").fadeIn(2000);
}
function moveLogo(){
    var wys=parseInt($("#flask").css("height"))+parseInt($("#hidden").css("height"));
    var padd=($(window).height()-wys)/2;
  //  $("body").css({"padding-top":padd+"px"});
}
$(function(){
    moveLogo();
    $(window).resize(moveLogo);
    /*$("#start").hide();*/
    $("#hidden").hide();
    
    if ($("#flask").attr("class").length>20){
        $("#flaskAlternate").hide().fadeIn(2000);
    }
    else{
        $("#flaskAlternate").css({"visibility":"hidden"});
        $("#flask").hide().fadeIn(2000);
    }
    setTimeout(showLogo,2000);
    $("#hidden").focus(function(){
       $(this).blur();
    });

});

