$(document).ready(function()
	{
	$(".menu a").hover(function() {
		
	    $(this).next('.one').animate({opacity: "show", top: "-118"}, "fast");
		}, function() {
		$(this).next('.one').animate({opacity: "hide", top: "-118"}, "fast");
			});
	$(".menu a").hover(function() {
		$(this).next('.two').animate({opacity: "show", top: "-139"}, "fast");
		}, function() {
		$(this).next('.two').animate({opacity: "hide", top: "-139"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.three').animate({opacity: "show", top: "-160"}, "fast");
		}, function() {
		$(this).next('.three').animate({opacity: "hide", top: "-160"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.four').animate({opacity: "show", top: "-181"}, "fast");
		}, function() {
		$(this).next('.four').animate({opacity: "hide", top: "-181"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.five').animate({opacity: "show", top: "-214"}, "fast");
		}, function() {
		$(this).next('.five').animate({opacity: "hide", top: "-214"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.six').animate({opacity: "show", top: "-223"}, "fast");
		}, function() {
		$(this).next('.six').animate({opacity: "hide", top: "-223"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.seven').animate({opacity: "show", top: "-244"}, "fast");
		}, function() {
		$(this).next('.seven').animate({opacity: "hide", top: "-244"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.eight').animate({opacity: "show", top: "-265"}, "fast");
		}, function() {
		$(this).next('.eight').animate({opacity: "hide", top: "-265"}, "fast");	
	});
	$(".menu a").hover(function() {
		$(this).next('.nine').animate({opacity: "show", top: "-286"}, "fast");
		}, function() {
		$(this).next('.nine').animate({opacity: "hide", top: "-286"}, "fast");	
	});
});