$(document).ready(function() {
	
	$("#image img.homelogo").hide();
	resizeLogo();
	resizeMap()
	$(window).resize(resizeLogo);
	$(window).resize(resizeMap);
	$("div.homenavi a").hide();
	$("div.homenavi").not(".visited").find(".shape").hide();
	
	$("div.homenavi").not(".visited").hover(
		function(){
			$(this).find(".shape").show();
		},
		function(){
			$(this).find(".shape").hide();
		}
	);
	$("#ticker").marquee().mouseover(function () {
		  $(this).trigger('stop');
		}).mouseout(function () {
		  $(this).trigger('start');
	});
});	

