/*
* JQUERY SIMPLE MENU 
* BY HTTP://WWW.LASTWEBDESIGNER.COM
*/


$(document).ready(function(){
var Duration = 150; //time in milliseconds


	$('div.menu ul li a').hover(function(){								
			content = $(this).children('span');						
			$(this).children('span').show();
			$(this).children('span').animate({ top: '0px'}, Duration);
			},function(){
			$(this).children('span').animate({top:'-94' }, Duration);		
	});

});


