// JavaScript Document

<!--

var subnavTimeout;
var planTimeout;
var planCss;

function subnavOpen(id){
		document.getElementById(id).style.display = 'inline' ;
}

function subnavClose(){
		subnavTimeout = setTimeout ("document.getElementById('subnavigation').style.display = 'none';"  , 500 );

}

function subnavStay(){
	clearTimeout (subnavTimeout);
}

function planClose(){
		planTimeout = setTimeout ("document.getElementById('projectPlans').style.display = 'none';"  , 500 );
}

function planStay(){
	clearTimeout (planTimeout);
}

//-->
