$(document).ready(function(){

	setTimeout(function(){$("#drift01").fadeOut("slow");},'4000');

	$("#header").hover(
	  function(){$("#drift01").fadeIn("slow");},
	  function(){$("#drift01").fadeOut("slow");}
	); 


}); 
