$(document).ready(function() {
   
      $('#pLayer').animate({
		top: -3
		}, 5000);
	
	$('#pLayerClose').click(function() {
				$('#pLayer').hide(2000);
			});
		
});