//script for running both special scripts on the home page
//done because quote box was once one of the boxes to be equalized
//left as is to avoid needless changes

function doScripts() {
    quotes.initialize();    //set up quotes box and start quote switching
    
    boxes.initialize();    //equalize box heights and activate transparency
}

if (document.getElementById && document.getElementsByTagName) {
    addEvent(window, 'load', doScripts, false);
}