<!--

function initIt(){
divCount = document.all.tags("DIV");
for (i=0; i<divCount.length; i++) {
obj = divCount(i);
if (obj.className == "child") obj.style.display = "none";
}
}

function expandIt(el) {

obj = eval("page" + el);
obj2 = eval("main" + el);
if (obj.style.display == "none") {
obj.style.display = "block";
obj2.all.tags('img')[0].src='images/incopen1.gif';
			
}
else {
obj.style.display = "none";
obj2.all.tags('img')[0].src='images/inccolse.gif';
			
}

}

onload = initIt;

//-->
