$(function (){
	// menu hover
	$('#navigator a img')
		.each(function (){
			$(this).data('hover_data', {orig_src: this.src, hover_src: this.src+'h'});
			var prel_img = new Image();
			prel_img.src = this.src+'h';
		})
		/* .hover(
			function (){this.src = $(this).data('hover_data').hover_src;},
			function (){this.src = $(this).data('hover_data').orig_src;}
		) */;
	$('#navigator a').hover(
		function (){
			$('img', this).each(function (){this.src = $(this).data('hover_data').hover_src;})
		},
		function (){
			$('img', this).each(function (){this.src = $(this).data('hover_data').orig_src;})
		}
	);
	// submenus
	$("#navigator ul li").hover(
		function(){
			$(this).children("ul").css("display","block");
		},
		function(){
			$(this).children("ul").fadeOut("fast");
		}
	);

})