// JavaScript Document
//this function hides the select box under the dropdown menu because IE6 has a bug that displays select boxes on //top of hover elements
function hideSelect()
	{
	try {
		if(document.getElementById('selectBox').style.visibility = 'hidden');
	}catch(e){}
	}
	
	
//show the select box onmouseout	
function showSelect()
	{
	try {
			if(document.getElementById('selectBox').style.visibility = 'visible');
	}catch(e){}	
	}
				