﻿$(document).ready(function() {
	$(".menu li").prepend("<a class=move></a>");
	$(".menu li").each(function() {
		var linkText = $(this).find("a.link").html();
		var href =  $(this).find("a.link").attr("href");
		$(this).find("a.move").attr("href", href);
		$(this).find("a.move").show().html(linkText);
	});

	$(".menu li").hover(function() {
		$(this).find("a.move").stop().animate({
			marginTop: "-27"
 		}, 160); 
 	} , function() {
 		$(this).find("a.move").stop().animate({
 			marginTop: "0"
 		}, 160);
 	});
 });
