$("header").mouseover(function(){
    $("header:not(:animated)").animate({top : 20+"px"},"fast");
});

$("header").mouseout(function(){
    $("header:not(:animated)").animate({top : 0+"px"},"fast");
});
