$(document).ready(function() {
	
	
	$("#menuV li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#menuV li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#menuV li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});



$(document).ready(function() {
	
	
	$("#menuVV li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#menuVV li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#menuVV li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});


$(document).ready(function() {
	
	
	$("#menuVVV li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#menuVVV li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#menuVVV li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});


$(document).ready(function() {
	
	
	$("#menuVVVV li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#menuVVVV li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#menuVVVV li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});


$(document).ready(function() {
	
	
	$("#div2 li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#div2 li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#div2 li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});


$(document).ready(function() {
	
	
	$("#div3 li").prepend("<span></span>"); //Throws an empty span tag right before the a tag

	$("#div3 li").each(function() { //For each list item...
		var linkText = $(this).find("a").html(); //Find the text inside of the <a> tag
		$(this).find("span").show().html(linkText); //Add the text in the <span> tag
	}); 

	$("#div3 li").hover(function() {	//On hover...
	

		$(this).find("span").stop().animate({
			marginTop: "-18" //Find the <span> tag and move it up 40 pixels
		}, 250);
	} , function() { //On hover out...
		$(this).find("span").stop().animate({
			marginTop: "0"  //Move the <span> back to its original state (0px)
		}, 250);
		
	});

});
