function processMenu(strMenuName, intItems){
	
	// Test to see if first sub is hidden or not
	if(document.getElementById(strMenuName + '_1').style.display == "block"){
		for(i=1; i<=intItems; i++){
			document.getElementById(strMenuName + '_' + i).style.display = "none";
		}
		document.getElementById(strMenuName).style.textDecoration = "none";
		document.getElementById(strMenuName).style.background = "url(graphics/elements/bullet_menu.gif) no-repeat";
	}else{
		for(i=1; i<=intItems; i++){
			document.getElementById(strMenuName + '_' + i).style.display = "block";
		}
		document.getElementById(strMenuName).style.textDecoration = "underline";
		document.getElementById(strMenuName).style.background = "url(graphics/elements/bullet_menu_over.gif) no-repeat";
	}

}




function processContact(intID){
	
	if(document.getElementById("con_" + intID).style.display == "block"){
			document.getElementById("con_" + intID).style.display = "none";
			document.images["img__" + intID].src = "graphics/elements/minus.gif";
	}else{
			document.getElementById("con_" + intID).style.display = "block";
			document.images["img__" + intID].src = "graphics/elements/plus.gif";
	}

}
