	
			$(document).ready(function() {
				$(".menu_item").hover(
					function () {
						$(this).next().stop(true,true).show();
						$(this).next().stop(true,true).animate({ opacity: 0 }, 0);
						$(this).next().stop(true,true).animate({ top: 148, opacity: 1 }, 400);
					}, 
					function () {
						$(this).next().stop(true,true).animate({ opacity: 0, top: 158 }, 300);
					}
				);
			});
	
