$(document).ready(function(){
	// zaokrąglamy górę
	$("#header, #logodesc_red, #logodesc_blue").corner("round top");
	
    // ustawienia animacji zakładek
    var tabSpeed = 100;
	var tabTop = parseInt($("#header_menu li:first a").css("top"));

    var activeTabId = 'xxxxxxx';
    // własciwa animacja
    $("#header_menu li a").hover(
        function() {
            if (this.id != activeTabId)
            {
                $(this).animate({top: (tabTop-10)+"px"}, tabSpeed);
            }
        },
        function() {
            if (this.id != activeTabId)
            {
                $(this).animate({top: tabTop+"px"}, tabSpeed);
            }
        }
    );
});
