$(document).ready(function() {
	$(".nav-shadow li").append('<img class="shadow" src="' + jQlocation + 'images/elements/icons-shadow.jpg" width="43" height="14" alt="" />');
	$(".nav-shadow li").hover(function() {
		var e = this;
		$(e).find("a").stop().animate({ marginTop:"-14px" }, 250, function() {
			$(e).find("a").animate({ marginTop:"-10px" }, 250);
		});
		$(e).find("img.shadow").stop().animate({ width:"80%", height:"20px", marginLeft:"3px", opacity:0.35 }, 250);
	},function(){
		var e = this;
		$(e).find("a").stop().animate({ marginTop:"4px" }, 250, function() {
			$(e).find("a").animate({ marginTop:"0px" }, 250);
		});
		$(e).find("img.shadow").stop().animate({ width:"43px", height:"14px", marginLeft:"0", opacity:1 }, 250);
	});
});
