$(document).ready(function(){

	// Hide header after delay
	$("header").delay(2000).animate({
	"top": "-120px",
	},1000);
	
	// Show/hide on hover
	$("header").hover(function(){
		$(this).stop().animate({
		"top": "0",
		},1000);
	}, function(){
		$(this).stop().animate({
		"top": "-120px",
		},200);
	});
});
