
var numquotes=13;

var quoteshowing=-1;

quotearray = new Array(numquotes);

quotearray[1]='<a href="http://www.gibbsva.edu/" target="_blank"><img src="/images/gibbs_english.gif" alt="Gibbs College - Vienna" width="178" height="157" border="0"></a>';

quotearray[2]='<a href="http://www.tlu.edu/" target="_blank"><img src="/images/texas_lutheran_english.gif" alt="Texas Lutheran University" width="178" height="157" border="0"></a>';

quotearray[3]='<a href="http://www.lee.edu/" target="_blank"><img src="/images/lee_english.gif" alt="Lee College" width="178" height="157" border="0"></a>';

quotearray[4]='<a href="http://www.vatterott-college.com/" target="_blank"><img src="/images/vatterott_english.gif" alt="Vatterott College - Kansas City" width="178" height="157" border="0"></a>';

quotearray[5]='<a href="http://www.keisercollege.edu/FtLaud.htm" target="_blank"><img src="/images/keiser_fl_english.gif" alt="Keiser College - Fort Lauderdale" width="178" height="157" border="0"></a>';

quotearray[6]='<a href="http://www.evergladesuniversity.edu/" target="_blank"><img src="/images/everglades_u_english.gif" alt="Everglades University" width="178" height="157" border="0"></a>';

quotearray[7]='<a href="http://www.barry.edu/" target="_blank"><img src="/images/barry_u_english.gif" alt="Barry University" width="178" height="157" border="0"></a>';

quotearray[8]='<a href="http://www.whittier.edu/" target="_blank"><img src="/images/whittier_english.gif" alt="Whittier College" width="178" height="157" border="0"></a>';

quotearray[9]='<a href="http://www.gatewaycc.edu/" target="_blank"><img src="/images/gateway_cc_english.gif" alt="GateWay Community College" width="178" height="157" border="0"></a>';

quotearray[10]='<a href="http://www.mc.maricopa.edu/" target="_blank"><img src="/images/mcc_english.gif" alt="Mesa Community College" width="178" height="157" border="0"></a>';

quotearray[11]='<a href="http://www.tamuk.edu/" target="_blank"><img src="/images/tamuk_english.gif" alt="Texas A&M University - Kingsville" width="178" height="157" border="0"></a>';

quotearray[12]='<a href="http://www.woodbury.edu/" target="_blank"><img src="/images/woodbury_english.gif" alt="Woodbury University" width="178" height="157" border="0"></a>';

quotearray[13]='<a href="http://www.iadtsanantonio.com/" target="_blank"><img src="/images/iadt_sa_english.gif" alt="International Academy of Design & Technology - San Antonio" width="178" height="157" border="0"></a>';


function randquote()
{
prevquoteshowing = quoteshowing;
while(quoteshowing == prevquoteshowing)
quoteshowing = Math.ceil(Math.random() * numquotes);
window.status = "";
document.write ("" + quotearray[quoteshowing] + "");
}

