$(function(){
	$("img.hv").hover(
		function(){if(this.src.indexOf("_on") == -1) this.src=this.src.replace(".gif", "_hv.gif");},
		function(){if(this.src.indexOf("_on") == -1) this.src=this.src.replace("_hv.gif", ".gif");}
	);

	$("#mra_selector li").click(
		function(){
			$.each($("#mra_selector li img"), function(){
				this.src = this.src.replace("_on.gif", ".gif");
			});
			$("#"+this.id+" img").get(0).src = $("#"+this.id+" img").get(0).src.replace(".gif", "_on.gif");
			$.each($(".mra"), function(){
				this.style.display = "none";
			});
			$("#"+this.id.replace("select_", "")).css("display", "block");
		}
	);
});

