var numquotes=9;

var quoteshowing=-1;

quotearray = new Array(numquotes);

quotearray[1]='<img  src="images/data/pic4.jpg" width="530" height="350" alt="" border="0">';
quotearray[2]='<img  src="images/data/pic5.jpg" width="530" height="350" alt="" border="0">';
quotearray[3]='<img  src="images/data/pic3.jpg" width="530" height="350" alt="" border="0">';
quotearray[4]='<img  src="images/data/pic2.jpg" width="530" height="350" alt="" border="0">';
quotearray[5]='<img  src="images/data/pic1.jpg" width="530" height="350" alt="" border="0">';
quotearray[6]='<img  src="galery/home_MF1.JPG"  width="530"  height="350" alt="" border="0">';
quotearray[7]='<img  src="galery/home_SFF05P2.JPG" width="530" height="350" alt="" border="0">';
quotearray[8]='<img  src="galery/home_SFF05P4.JPG" width="530"  height="350" alt="" border="0">';
quotearray[9]='<img  src="galery/home_SFF05P5.JPG"  width="530" height="350"  alt="" border="0">';





function randomPics()
{
     prevquoteshowing = quoteshowing;
     while(quoteshowing == prevquoteshowing)
          quoteshowing = Math.ceil(Math.random() * numquotes);
          window.status = "";
          document.write ("" + quotearray[quoteshowing] + "");
          
}
