      $(document).ready(function(){
	  
	  $('#advert').hide();
   
   			$('a#click_advert').click(function(){
			
			$('#advert').show('slow');
   
   });
   
   $('a#close').click(function(){
   		$('#advert').hide('slow');
		})
   
 	  });
