// JavaScript Document
/*
function randomQuote() {

	var ran_unrounded=Math.random()*3;
	var ran_number=Math.round(ran_unrounded);

    var quote=new Array(4)
     quote[0]="<img src='images/quote1.gif' width='274' height='57' alt='Quote 1'>";
     quote[1]="<img src='images/quote2.gif' width='274' height='57' alt='Quote 2'>";
     quote[2]="<img src='images/quote3.gif' width='274' height='57' alt='Quote 3'>";   
     quote[3]="<img src='images/quote4.gif' width='274' height='57' alt='Quote 4'>";
	 
	 document.write quote[ran_number];

}
*/