$(document).ready(function () 
{
	$("#header-text").hover(function(){
			$("#header-inner").animate({opacity:1},1500) ;
		},
		function(){
			$("#header-inner").animate({opacity:0},1500);
		}
	);
});
