// JavaScript Document
function buttonOver(divID){
	document.getElementById(divID).style.backgroundColor = '#246494';
}

function buttonOut(divID){
	document.getElementById(divID).style.backgroundColor = '#30a1db';
}

function hideSearchBlock(){
	if (document.all) { //IS IE 4 or 5 (or 6 beta) 
		eval( "document.all.searchBlock.style.display = 'none'"); 
	} 
	if (document.layers) { //IS NETSCAPE 4 or below 
		document.layers['searchBlock'].display = 'none'; 
	} 
	if (document.getElementById &&!document.all) { 
		hza = document.getElementById('searchBlock'); 
		hza.style.display = 'none'; 
	} 
}

function showSearchBlock(){
	if (document.all) { //IS IE 4 or 5 (or 6 beta) 
		eval( "document.all.searchBlock.style.display = 'block'"); 
	} 
	if (document.layers) { //IS NETSCAPE 4 or below 
		document.layers['searchBlock'].display = 'block'; 
	} 
	if (document.getElementById &&!document.all) { 
		hza = document.getElementById('searchBlock'); 
		hza.style.display = 'block'; 
	}
}