function changeWS(text){
	window.status = text
	return true;
}

function showQuickLinks(){
	whichDiv = document.getElementById('quickLinks')
	whichDiv.style.display = 'block';
	checkForSelect('true')
}

function init(){
	nodes = document.getElementById("list").childNodes
	for(var i=0; i<nodes.length;i++){
		nodes[i].onmouseover = function(){
			hide('true')
		}
		nodes[i].onmouseout = function(){
			hide('false')
		}
	}
}
function hide(over){
	if(over == 'true'){
		
	}
	else{
		closeMe()
	}
}
function closeMe(){
	//whichDiv = document.getElementById('quickLinks')
	//fadeIn(whichDiv, 95)
	obj = document.getElementById('quickLinks')
	obj.style.display = 'none'
	checkForSelect('false')
}

function checkForSelect(over){
	thisForm = document.forms
	if(over == 'true'){
		for(var i=0; i<thisForm.length;i++){
			for(var j=0; j < thisForm[i].elements.length;j++){
				if(thisForm[i].elements[j].type == 'select-one' || thisForm[i].elements[j].type == 'select-multiple'){
					thisForm[i].elements[j].style.display = 'none'
				}
			 }
		}
	}
	else{
		for(var i=0; i<thisForm.length;i++){
			for(var j=0; j < thisForm[i].elements.length;j++){
				if(thisForm[i].elements[j].type == 'select-one' || thisForm[i].elements[j].type == 'select-multiple'){
					thisForm[i].elements[j].style.display = 'inline'
				}
			 }
		}
	}
}
