<!-- 
/*
        -------------------------------------------------------------------------------------------
        Revised Random Image/Link/text JavaScript(tm) by Jim Matvichuk

        This code may be used freely as long as the following copyright 
        notice remains with the code.
        
                Copyright© 1997-1998, Jim Matvichuk(JEM productions)
                www.jem-productions.com 
                jim@jem-productions.com
                All rights reserved

        Last Revision: March, 1998      
        -------------------------------------------------------------------------------------------

*/
// Global vars----
G_total_sa = 0;
G_day = new Date();
G_seed = 1+G_day.getTime();
 
ae_('<IMG SRC="/rotatingimages/sittinggirl.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/girlscience.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/greenhouse.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/chemicals.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/graduatescolonnade.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/libertyhall.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');
ae_('<IMG SRC="/rotatingimages/george.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="1">');


/*
ae_('<IMG SRC="/rotatingimages/bac031.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/bac032.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/bac033.jpg" ALT="Welcome to The College" WIDTH="400" HEIGHT="227" BORDER="0">');
*/

/*
ae_('<IMG SRC="/rotatingimages/com031.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com032.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com033.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com034.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com035.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com036.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com037.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
ae_('<IMG SRC="/rotatingimages/com038.jpg" ALT="Commencement 2003" WIDTH="400" HEIGHT="227" BORDER="0">');
*/

function ae_ (random_item) {
        G_total_sa++;
        sa [G_total_sa] = random_item;
}

function rand() {
RN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*G_total_sa + 1,10);
        return RN;
}

function sa () {}
//-->
