/* ----- Show / Hide Divs ----- */

var timerID = null; 			// Initiate timerID
var timerOn = false; 			// Initiate timer
var timecount = 100;			// Countoff in (ms)


function sto() {
	clearTimeout(timerID);		// reset Timer
	timerID = null;				// reset TimerID
	timerOn = false;			// 
		
}
function sta() {
	// alert(actDiv);
	timerID = setTimeout( "hideSub();", timecount); 
	timerOn = true;				//

}



function showSub(nav_arg, chk_arg) {
	curDiv = nav_arg;
	document.getElementById(nav_arg).style.display = 'block';
	if(!chk_arg) {
		//useNav = true;
		document.getElementById('mn1').style.backgroundImage = 'url(/images/navbar.gif)';
		document.getElementById('mn1').style.backgroundPosition = '-17px -28px';
	}
}
function hideSub() {
	document.getElementById(curDiv).style.display = 'none';
	/*
	if(useNav == true) {
		document.getElementById('mn1').style.backgroundImage = 'none';
	}
	*/
}

/* -------------------- SEARCH FUNCTION -------------------- */
function searchOSU() {
	var query = document.getElementById('searchString').value;
	var site = 'http://osufoundation.org';
	location.href='http://search.oregonstate.edu/web/?query=' + query + '&site=' + site;
	}
/* -------------------- SEARCH FUNCTION -------------------- */


