Sliding pages + wordpress [closed]

This is what came to mind though there could be some easy implementations as well:


jQuery(document).ready(function(){

jQuery(document).scroll(function(){
    if(jQuery(document).scrollTop()>0){
        jQuery('#first-header').hide();
        jQuery('#second-header').show();
    }
    else{
        jQuery('#second-header').hide();
        jQuery('#first-header').show();
    }
})

})