var hoverColour = "#b58151";
$(function(){
	$("a.hoverMenu").show("fast", function() {
		$(this).wrap("<li class=\"hoverMenu\">");
		$(this).attr("class", "");
	});
	//display the hover div
	$("li.hoverMenu").show("fast", function() {
		//on link hover
		$(this).children("a").hover(function(){
			//store initial link colour
			if ($(this).attr("rel") == "") {
				$(this).attr("rel", $(this).css("color"));
			}
			//fade the colour
			$(this)	.stop()
				.css({"color": $(this).attr("rel")})
				.animate({"color": hoverColour}, 350);
		},function(){
			//fade the colour
			$(this)	.stop()
				.animate({"color": $(this).attr("rel")}, 250);
		});
	});
});

