$(document).ready(function(){
			$(".menu li").hover(function(){
			$(this).children("ul").show();
			$(this).children("a").addClass("hov");
			},function(){
			$(this).children("ul").hide();
			$(this).children("a").removeClass("hov");
			});
			
			$(".map_big").hide();
			$(".map a").hover(function(){
			$(".map_small").hide("slow");
			$(".map_big").show("slow");
			},function(){
			$(".map_big").hide("slow");
			$(".map_small").show("slow");
			});
			
			$(".thumbs a").hover(function(){
				var largePath = $(this).attr("href");
				var largeAlt = $(this).attr("title");
				$("#largeImg").attr({ src: largePath, alt: largeAlt });
			});
		});


