
$(document).ready(function() { 
	
$('#hpBanner').delay(1000).show('slide','slow');

$('#close').click(function(event){
	event.preventDefault();
	$('#hpBanner').hide('slide','slow');
	return false;
})
	
//end ready
});
