/////////////////////////////////////////////////////////////////////////////////
// Image Rollover for Footer
/////////////////////////////////////////////////////////////////////////////////
arImageSrc = new Array (
        "/images/footer/campus_bottom01.gif",
        "/images/footer/campus_bottom02.gif",
        "/images/footer/campus_bottom03.gif",
        "/images/footer/campus_bottom04.gif",
        "/images/footer/campus_bottom05.gif",

        "/images/footer/future_bottom01.gif",
        "/images/footer/future_bottom02.gif",
        "/images/footer/future_bottom03.gif",
        "/images/footer/future_bottom04.gif",
        "/images/footer/future_bottom05.gif",

        "/images/footer/studentlife_bottom01.gif",
        "/images/footer/studentlife_bottom02.gif",
        "/images/footer/studentlife_bottom03.gif",
        "/images/footer/studentlife_bottom04.gif",
        "/images/footer/studentlife_bottom05.gif",

        "/images/footer/academics_bottom01.gif",
        "/images/footer/academics_bottom02.gif",
        "/images/footer/academics_bottom03.gif",
        "/images/footer/academics_bottom04.gif",
        "/images/footer/academics_bottom05.gif",

        "/images/footer/faculty_bottom01.gif",
        "/images/footer/faculty_bottom02.gif",
        "/images/footer/faculty_bottom03.gif",
        "/images/footer/faculty_bottom04.gif",
        "/images/footer/faculty_bottom05.gif",

        "/images/footer/alumni_bottom01.gif",
        "/images/footer/alumni_bottom02.gif",
        "/images/footer/alumni_bottom03.gif",
        "/images/footer/alumni_bottom04.gif",
        "/images/footer/alumni_bottom05.gif",

        "/images/footer/home_bottom01.gif",
        "/images/footer/home_bottom02.gif",
        "/images/footer/home_bottom03.gif",
        "/images/footer/home_bottom04.gif",
        "/images/footer/home_bottom05.gif"
        );
        arImageList = new Array ();
        for( counter in arImageSrc )
        {   arImageList[counter] = new Image();
            arImageList[counter].src = arImageSrc[counter];
        }
/////////////////////////////////////////////////////////////////////////////////
// END: Image Rollover for Footer
/////////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
// People Search Function
///////////////////////////////////////////////////////////////////////////////
function checkQuickPeopleSearch() 
{   var f = document.quickPeopleSearch;
    var valueString = new String( f.keywords.value.toString() );
    var whitespaceL = /^\s+/;
    var whitespaceR = /\s+$/;
    valueString = valueString.replace( whitespaceL, "" );
    valueString = valueString.replace( whitespaceR, "" );
    f.keywords.value = valueString;
    if( f.keywords.value.length < 2 )
    {   alert( "Please type at least 2 characters to search for people" );
        f.keywords.focus();
        return false;
    }
    else
    {   return true;
    }
}
///////////////////////////////////////////////////////////////////////////////
// END: People Search Function
///////////////////////////////////////////////////////////////////////////////


