$(document).ready(function(){
    //$("#header").fadeOut(1000);
    //$("#header").fadeIn(1000);
    $(".WhiteFrame").hide().slideDown(1000);

    $("#teplomer").animate({"top": "+=30px"}, "slow").animate({"top": "-=30px"}, "slow");

    $("#teplomer").mouseenter(function () {
        $("#temperature").show("slow");
        $("#teplomer").animate({"top": "+=10px"}, "slow");
    });
    $("#teplomer").mouseleave(function () {
        $("#temperature").hide("slow");
        $("#teplomer").animate({"top": "-=10px"}, "slow");
    });
});