// JavaScript Document
var numquotes=11;

var quoteshowing=-1;

quotearray = new Array(numquotes);

quotearray[1]='<img border="0" vspace="0" src="images/sample_image01.jpg" width="200" height="200" alt="" border="0">';
quotearray[2]='<img border="0" vspace="0" src="images/sample_image02.jpg" width="200" height="200" alt="" border="0">';
quotearray[3]='<img border="0" vspace="0" src="images/sample_image03.jpg" width="200" height="200" alt="" border="0">';
quotearray[4]='<img border="0" vspace="0" src="images/sample_image04.jpg" width="200" height="200" alt="" border="0">';
quotearray[5]='<img border="0" vspace="0" src="images/sample_image05.jpg" width="200" height="200" alt="" border="0">';
quotearray[6]='<img border="0" vspace="0" src="images/sample_image06.jpg" width="200" height="200" alt="" border="0">';
quotearray[7]='<img border="0" vspace="0" src="images/sample_image07.jpg" width="200" height="200" alt="" border="0">';
quotearray[8]='<img border="0" vspace="0" src="images/sample_image08.jpg" width="200" height="200" alt="" border="0">';
quotearray[9]='<img border="0" vspace="0" src="images/sample_image09.jpg" width="200" height="200" alt="" border="0">';
quotearray[10]='<img border="0" vspace="0" src="images/sample_image10.jpg" width="200" height="200" alt="" border="0">';
quotearray[11]='<img border="0" vspace="0" src="images/sample_image11.jpg" width="200" height="200" alt="" border="0">';

function randomPics()
{
     prevquoteshowing = quoteshowing;
     while(quoteshowing == prevquoteshowing)
          quoteshowing = Math.ceil(Math.random() * numquotes);
          window.status = "";
          document.write ("" + quotearray[quoteshowing] + "");
}