// JavaScript Document
function menu(num){	
var d=document;
oTop=new Array();
oTop[0]=d.getElementById('divTop1');
oTop[1]=d.getElementById('divTop2');
oTop[2]=d.getElementById('divTop3');
oTop[3]=d.getElementById('divTop4');
oTop[4]=d.getElementById('divTop5');
oTop[5]=d.getElementById('divTop6');
oTop[6]=d.getElementById('divTop7');
oTop[7]=d.getElementById('divTop8');
oSub=new Array();
oSub[0]=d.getElementById('divSub1');
oSub[1]=d.getElementById('divSub2');
oSub[2]=d.getElementById('divSub3');
oSub[3]=d.getElementById('divSub4');
oSub[4]=d.getElementById('divSub5');
oSub[5]=d.getElementById('divSub6');
oSub[6]=d.getElementById('divSub7');
oSub[7]=d.getElementById('divSub8');
if (oSub[num].style.display=="none" || oSub[num].style.display==""){
	for(i=0; i<oSub.length; i++){
		if(i!=num) {
			oSub[i].style.display="none";
			oTop[i].firstChild.style.textDecoration="underline";
			oTop[i].firstChild.style.fontWeight="normal";
			oTop[i].firstChild.style.color="#00554F";
			}
		oSub[num].style.display="block";
		oTop[num].firstChild.style.textDecoration="none";
		oTop[num].firstChild.style.fontWeight="bold";
		oTop[num].firstChild.style.color="#35250C";
		}
	}
else for(i=0; i<oSub.length; i++){
	oSub[i].style.display="none";
	oTop[i].firstChild.style.textDecoration="underline";
	oTop[i].firstChild.style.fontWeight="normal";
	oTop[i].firstChild.style.color="#00554F";
	}
}
