var max=4;
var thisQuote=1;
var quote=new MakeQuoteArray(max);

function MakeQuoteArray(n)
{
this.length=n;
for (var i=1; i<=n;i++)
{
this[i]="";
}
return this;
}


//Quotes

quote[1]='<a href="http://www.rossyellowpages.com" target="_blank"><img src="http://www.innovectra.com\/images\/feature-bg-ross.jpg" border="0" alt="I have found Innovectra to be very professional and service oriented, providing excellent support in the sales and marketing of our IYP site. - Shelly Hupp, President, Ross Yellow Pages"><\/a>';

quote[2]='<a href="http://www.directoryplus.com" target="_blank"><img src="http://www.innovectra.com\/images\/feature-bg-directory-plus.jpg" border="0" alt="Innovectra always presents innovative product ideas to help us expand and grow our online business. - Bruce Ehlenbeck, National Sales Manager, Directory Plus"><\/a>';

quote[3]='<a href="http://www.surewestyellowpages.com" target="_blank"><img src="http://www.innovectra.com\/images\/feature-bg-surewest.jpg" border="0" alt="We have been extremely pleased with our new site\'s performance and are excited about the future with Innovectra. - Bob Collins, General Manager, SureWest Directories"><\/a>';

quote[4]='<a href="http://www.surewestyellowpages.com" target="_blank"><img src="http://www.innovectra.com\/images\/feature-bg-surewest2.jpg" border="0" alt="We evaluated over 7 solution providers and in our final analysis, there was not even a close 2nd -- Innovectra stood head and shoulders above the pack. - Bob Collins, General Manager, SureWest Directories"><\/a>';


//Random Number Generator
function rand(n)
      {
      rnum=Math.floor(n*Math.random())+1;
      return rnum;
      }
	
//Fire Function
function setQuote()
      {
      thisQuote=rand(max);
      }

