var numquotes=6;

var quoteshowing=-1;

quotearray = new Array(numquotes);

quotearray[1]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home01.jpg" >';
quotearray[2]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home02.jpg" >';
quotearray[3]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home03.jpg" >';
quotearray[4]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home04.jpg" >';
quotearray[5]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home05.jpg" >';
quotearray[6]='<img border="1" BORDERCOLOR="#374747" style="float: right" src="../pictures/home06.jpg" >';


function randomPics()
{
     prevquoteshowing = quoteshowing;
     while(quoteshowing == prevquoteshowing)
          quoteshowing = Math.ceil(Math.random() * numquotes);
          window.status = "";
          document.write ("" + quotearray[quoteshowing] + "");
}

