//function expandIt(){return}

function initIt(){
    //tempColl = document.all.tags("DIV");
    tempColl = document.all ? document.all.tags("DIV") : document.getElementsByTagName('DIV');

    for (i=0; i<tempColl.length; i++) {
        if (tempColl[i].className == "child") tempColl[i].style.display = "none";
    }
}

function expandIt(el) {
    whichEl = document.getElementById(el + "Child");
    whichIm = document.getElementById(el + "Img");

    //tempColl = document.all.tags("DIV");
    tempColl = document.all ? document.all.tags("DIV") : document.getElementsByTagName('DIV');

    for (i=0; i<tempColl.length; i++) {
        if (tempColl[i].className == "child")
        if (tempColl[i]!=whichEl) tempColl[i].style.display = "none";
    }

    tempEl = document.getElementById("el1Img");
    if (el!='el1') tempEl.src = "images/plus.gif";
    tempEl = document.getElementById("el2Img");
    if (el!='el2') tempEl.src = "images/plus.gif";
    tempEl = document.getElementById("el3Img");
    if (el!='el3') tempEl.src = "images/plus.gif";
    tempEl = document.getElementById("el5Img");
    if (el!='el5') tempEl.src = "images/plus.gif";
    tempEl = document.getElementById("el8Img");
    if (el!='el8') tempEl.src = "images/plus.gif";
    tempEl = document.getElementById("el9Img");
    if (el!='el9') tempEl.src = "images/plus.gif";

    if (whichEl.style.display == "none") {
        whichEl.style.display = "block";
        whichEl.style.top = "0px";
        setTimeout("whichEl.style.top = \"5px\"", 33);
        setTimeout("whichEl.style.top = \"10px\"", 66);
        setTimeout("whichEl.style.top = \"15px\"", 100);
        setTimeout("whichEl.style.top = \"10px\"", 133);
        setTimeout("whichEl.style.top = \"5px\"", 166);
        setTimeout("whichEl.style.top = \"0px\"", 200);
        setTimeout("whichEl.style.top = \"5px\"", 250);
        setTimeout("whichEl.style.top = \"10px\"", 300);
        setTimeout("whichEl.style.top = \"7px\"", 346);
        setTimeout("whichEl.style.top = \"5px\"", 400);
        setTimeout("whichEl.style.top = \"5px\"", 500);
        whichIm.src = "images/minus.gif";
    } else {
        whichEl.style.display = "none";
        whichIm.src = "images/plus.gif";
    }

    //window.event.cancelBubble = true;
}