/* 
	Rollover linking from and between each mirvac site
	
*/
var hideIntervalID;

function showDashboard () {
	
	
	$("div#dashboard").show();
	clearInterval(hideIntervalID);
	
}

function hideDashboard () {
	
	// hidden after a short delay to avoid potential flicker when 'hovering' between logo and the dash
	hideIntervalID = setInterval ( function () { 
			$("div#dashboard").hide();
		}, 100 );
	
}

$(function() {
	
	// hover shows and hides the dash...!
	$(".logo a#header_logo img").hover(showDashboard, hideDashboard);
	$("div#dashboard").hover(showDashboard, hideDashboard);
	
});
