$(document).ready(function(){
	$('#advert_close').click(function(){
		$('#adverts').slideUp('slow');
	})
	
	$('li.page_item_title').hover(
		function() {
		$(this).next().stop().show()
		.animate({ 
				height: '4em' 
			},
			{
				queue:false, duration:500
			});
		}, 
		function() {
		$(this).next().stop()
		.animate({ 
				height: '0em' 
			},{
				duration:300,
				queue:false, 
				complete: function() {
				      $(this).hide();
				    }
			});
		});
	});
