





		
// MKIF assets scripts

//	Overview map
//	-----------------------------------------------------

$(function(){
	$(".asset-nav li a").each(function () {
	  	
		var itemClass = $(this).parent().attr('class');
		function mouseover(event) {
			$("li." + itemClass + " a").addClass('hover');
			}
		function mouseout(event) {	
			$("li." + itemClass + " a").removeClass('hover');
			}
		$(this).hover(mouseover,mouseout);
	});
});
 
//	popups
//	-----------------------------------------------------
//  uses jQuery Tools Overlay and Expose
//	http://flowplayer.org/tools/demos/overlay/expose.html

// 	works with any element with class="popup"
$(function() { 
    $(".popup").overlay({expose: '#222'});
});

//	Tooltips
//	-----------------------------------------------------
//  uses jQuery Tools Tooltip
//	http://flowplayer.org/tools/tooltip.html

// Location map tooltip
$(function() {
	$("#location-map").tooltip({
		position: ['top', 'center'], 
		opacity: 1.0,
		offset: [30, -30]
	});
});
