	$(document).ready(function(){
		$("img.menu").hover(function() {
					var src = $(this).attr("src").replace("_off", "_on");
					$(this).attr("src", src);
					var altname = $(this).attr("alt");
					var src2 = $("#item").attr("src").replace("blank", altname);
					$("#item").attr("src", src2);
					
				}, function() {
					var src = $(this).attr("src").replace("_on", "_off");
					$(this).attr("src", src);
					var altname = $(this).attr("alt");
					src = $("#item").attr("src").replace(altname, "blank");
					$("#item").attr("src", src);
			});
			
		$("img.menu2").hover(function() {
					var src = $(this).attr("src").replace("_off", "_on");
					$(this).attr("src", src);
					
				}, function() {
					var src = $(this).attr("src").replace("_on", "_off");
					$(this).attr("src", src);
			});
			
			
		$(".sub_menu a").click(function() {
					var gallery_select = $(this)[0].innerHTML;
					var title = $(this).attr('title');
					$(".sub_menu a").attr("class","");
					$(".sub_menu a").each(function(index) {
					   if(title == $(this).attr('title')){
							$(this).attr('class', 'selected');
					   }
				    });
					//$(this).attr("class", "selected");
					$(".gallery").attr("class","gallery hide");
					var alt = $(this).attr("title");
					$("#"+alt).attr("class","gallery");
				});

});

