// JavaScript Document

<!--
function collapseAll(objs) {
    var i;
    for (i=0;i<objs.length;i++ ) {
        if (objs[i] != null) {
            objs[i].style.display = 'none';
        }
    }
}
function pageLoad() {
    collapseAll($('release1','release2','release3'));
}

addEvent(window,'load',pageLoad);
//-->