$(document).ready( function()
{
    $(".menu-item").not('.current_page_item').hover(function()
    {
        //alert('here')
		$(this).find('span').stop()
			.animate({
				bottom: '22px'
			}, 400);
		} , function() {
		$(this).find('span').stop()
			.animate({
				bottom: '17px'
			}, 400);
		
	});
});
