jQuery(function($){
	var $target;
	var $path = location.pathname;
	if ($path){
		$('#topZone div.image h4 a[href="' + $path + '"]').parents(".image").addClass("selected");
	}
	if ($path == "/insurance-home/"){
		$('#topNavContainer a[href="' + $path + '"]').addClass('current');
		$('#topNavContainer a[href="/markel-marine"]').addClass('current'); 
		$("div.CenterZone").children().not("p:has(img)").addClass("home");
	}
	$("#topZone p img").css("display","none");
	$("#topZone p img").fadeIn(3000);
	$("#topZone div.image").not(".selected").hover(function(){
			$target = $(this).children("a.teaserImage");
			$target.stop().fadeTo("fast",0.5)
		},
		function(){
			$target.stop().fadeTo("fast", 0.0);
	});
	
	$("div.OneCol div:last").addClass("last");
	if($("#topZone div").length == 0)
	{
		$("#topZone").hide();
	}
	$("#topNavContainer li a").not(".current").hover(
		function(e){
			$(this).addClass("current");
		},
		function(e){
			$(this).removeClass("current");
		}
	);
});

