$(document).ready(function(){
	$("div#promobar").toggle('fast');
	$("p#closeP a").click(function(){
		$("div#promobar").toggle('fast');
	});
});