<script text="text/javascript">
jQuery(function($){
$(window).bind('scroll', function() {
var windowHeight = $(window).height();
if ($(window).scrollTop() < windowHeight) {
$("#header-two").css("top",-20);
}
else {
$("#header-two").css("top",64).css("opacity",1);
}
});
});
</script>
var windowHeight = 2000;