// JavaScript Document
function expand(listID) {
listID = document.getElementById(listID);
        if (listID.style.display == "none") {
                listID.style.display = "";
        }
        else {
                listID.style.display = "none";
        }
}

function menuclick(menuID){
	location.replace(menuID);
}

function show(listID){
	listID = document.getElementById(listID);
    listID.style.display = "";
}

function hide(listID){
	listID = document.getElementById(listID);
    listID.style.display = "none";
}

function selectsearchform(ID) {
	switch(ID){
		case "googlesearch" :
			show("googlesearch");
			hide("innersearch");
		break;
		default :
			hide("googlesearch");
			show("innersearch");
		break;
	}
}
