/* jquery version */

function initmenu() 
{
	$('#aneywear_menu li').hover(
	
		function () {
			x = "images/menu/" + $(this).find('img').attr("id") + "_over.gif";
			$(this).find("img").attr("src",x);
		},
		
		function () {
			x = "images/menu/" + $(this).find('img').attr("id") + ".gif";
			$(this).find("img").attr("src",x);
		}
	);

}
