$(document).ready(function(){
	
	//When mouse rolls over
	$("#hmenu li.menu-item").mouseover(function(){
		$(this).not(".current_page_item").stop().animate({top:'-10px',height:'40px'},{queue:false, duration:500, easing: 'easeOutBack'});
	});
	
	//When mouse is removed
	$("#hmenu li.menu-item").mouseout(function(){
		$(this).not(".current_page_item").stop().animate({top:'0px',height:'30px'},{queue:false, duration:500, easing: 'easeOutBack'})
	});
	/*
		$w=$(".post-title").width();
		$(".post-title").width(0);
		$(".post-title").stop().animate({top:'0px',width:$w},{queue:false, duration:500})
	*/
});
