function rotate()
{
        // QUOTATIONS

        var Quotation=new Array(
'Quo_AE_1.gif',
'Quo_B_1.gif',
'Quo_B_2.gif',
'Quo_B_3.gif',
'Quo_DL_1.gif',
'Quo_DL_2.gif',
'Quo_DL_3.gif',
'Quo_G_1.gif',
'Quo_HF_1.gif',
'Quo_MLK_1.gif',
'Quo_MT_1.gif',
'Quo_MT_2.gif',
'Quo_MT_3.gif',
'Quo_NM_1.gif',
'Quo_NW_1.gif',
'Quo_WD_1.gif',
'Quo_WD_2.gif',
'Quo_WD_3.gif',
'Quo_WD_4.gif',
'Quo_WD_5.gif',
'Quo_WD_6.gif',
'Quo_TP_1.gif'
)

        var which = Math.round(Math.random()*(Quotation.length - 1));
        return 'files/images/Quotes/' + Quotation[which];
}
function printQuote(){
  document.write('<img src="' + rotate() + '" alt="Quote" />')
}