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

function showDashboard () {
	
	
	$("div#page div#header 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#page div#header div#dashboard").hide(); }, 100 );
	
}

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