$(document).ready(function(){
						    $(document).ready(function () { $('#menu li a p').remove();
														});
 $('#menu li a').hover(function() {
	
		// Stuff that happens when you hover on
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 400, 'easeInQuart')
	
	},function() {
	
		// Stuff that happens when you unhover
		$('.hover', this).stop().animate({
			'opacity': 0
			}, 600, 'easeOutBack')
	
	})


  });

