$(document).ready(
	function()
	{

		$("div#top_menu img").mouseover(
			function()
			{
				if($(this).attr("class") == "selected")
					return;
				var src = $(this).attr("src");
				var idx = src.lastIndexOf("/");
				src = src.substring(0, idx+1) + "1" + src.substring(idx+1);
				$(this).attr("src", src);
			}
		);

		$("div#top_menu img").mouseout(
			function()
			{
				if($(this).attr("class") == "selected")
					return;
				var src = $(this).attr("src");
				var idx = src.lastIndexOf("/");
				src = src.substring(0, idx+1) + src.substring(idx+2);
				$(this).attr("src", src);
			}
		);
			
	}
);
