// ==============================================
// Copyright 2004 by CodeLifter.com
// ==============================================

var Quotation=new Array() // do not change this!

Quotation[0] = "<img src=\"../images/photos/home.jpg\" alt=\"Advance Components, Inc.\" width=\"775\" height=\"380\" />";
Quotation[1] = "<img src=\"../images/photos/home2.jpg\" alt=\"Advance Components, Inc.\" width=\"775\" height=\"380\" />";
Quotation[2] = "<img src=\"../images/photos/home3.jpg\" alt=\"Advance Components, Inc.\" width=\"775\" height=\"380\" />";
Quotation[3] = "<img src=\"../images/photos/home4.jpg\" alt=\"Advance Components, Inc.\" width=\"775\" height=\"380\" />";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();