function switchTextBox(n) {
    var textbox = MM_findObj("textBoxImg");
    if (textbox) {
        textbox.src = "i/home_textbox" + n + ".gif";
    }
}
function restoreTextBox() {
    switchTextBox(0);
}
function showFeaturedUser(boldText, message) {
    var boldSection = MM_findObj("userInfoBoldText");
    var mainSection = MM_findObj("userInfoMainText");
    if (boldSection) {
        boldSection.innerHTML = boldText;
    }
    if (mainSection) {
        mainSection.innerHTML = message;
    }
}
function clearFeaturedUser() {
    var boldSection = MM_findObj("userInfoBoldText");
    var mainSection = MM_findObj("userInfoMainText");
    if (boldSection) {
        boldSection.innerHTML = '&nbsp;';
    }
    if (mainSection) {
        mainSection.innerHTML = 'Rollover a user to see what they think of Reporo.';
    }
}