var slideShowSpeed = 10000;    //1sec=1000
var t=0;
var j=0;

var Pic = new Array();
Pic[0]='../images/uturn-rotate.gif';
Pic[1] = '../images/Interstate-rotate.gif';
Pic[2]='../images/mathnasium-rotate.gif';
Pic[3]='../images/abs-rotate.gif';
Pic[4]='../images/360solutions-rotate.gif';
Pic[5]='../images/dickeys-rotate.jpg';
Pic[6] = '../images/sportclips-rotate.gif';
Pic[7]='../images/chemdry-rotate.gif';


var Quotation=new Array(
'U-Turn is dedicated to helping the independent vending owner operator to be hugely successful in this billion dollar industry! U-Turn opportunities exist almost anywhere for entrepreneurs to make great money without ... <FONT class="smallgreylink">MORE</FONT>',
'Interstate All Battery Center is the only battery specialty store built on the strength of a national brand. Since 1952, Interstate Batteries has been ...<FONT class="smallgreylink">MORE</FONT>',
'Your money should be spent growing your business, not paying us hefty fees to get started. But it is not only the franchise fee that is low. The cost of launching a Mathnasium franchise is less than so many other franchises...<FONT class="smallgreylink">MORE</FONT>',
'20 Years as America s Leader in Medical Billing with Unparalleled Training, and Support. $100k Potential working from anywhere, full-time or part-time.... <FONT class="smallgreylink">MORE</FONT>',
'Build your own rewarding business helping small to medium size businesses increase productivity and profitability... <FONT class="smallgreylink">MORE</FONT>',
'Why Dickeys? You want to own your own business. We want only the best Owner/Operators. Simply put, we serve barbecue of the highest quality, we do so with the best group of people we can find, and we treat...<FONT class="smallgreylink">MORE</FONT>',
'All-Star haircutting franchise for men & boys in a uniquely designed, exciting sports-themed environment with TV`s playing sports at every station.... <FONT class="smallgreylink">MORE</FONT>',
'Chem-Dry is the worlds leading carpet and Upholstery Cleaning Company with nearly 4,000 franchises in 51 countries. We have an exclusive carbonating cleaning system which does a superior job of cleaning... <FONT class="smallgreylink">MORE</FONT>'                  
);
var ALTinfo = new Array(
'U-Turn',
'Interstate All Battery Center',
'Mathnasium',
'American Business Systems',
'360 Solutions',
'Dickeys Barbecue',
'Sport Clips',
'Chem-Dry'
);
var LINKinfo = new Array(
'/cgi-bin/profile.php?key=4215',
'/cgi-bin/profile.php?key=4463',
'/cgi-bin/profile.php?key=22116',
'/cgi-bin/profile.php?key=6381',
'/cgi-bin/profile.php?key=5780',
'/cgi-bin/profile.php?key=4576',
'/cgi-bin/profile.php?key=6623',
'/cgi-bin/profile.php?key=7894'
);



j = get_random(10);			   //set j = highest subscript of array
if (j > (Pic.length -1)) j=0;

//-----------------
function runSlideShow(){
	burns.innerHTML=Quotation[j];
	document.images.SlideShow.src = Pic[j];
	document.images.SlideShow.alt = ALTinfo[j];
	document.getElementById('myAnchor').href=LINKinfo[j];

   j = j + 1;
   if (j > (Pic.length -1)) j=0;
   t = setTimeout('runSlideShow()', slideShowSpeed);
}

function get_random(iMax)
{ var ranNum= Math.round(Math.random()* iMax);
  //.... alert("Random# " +ranNum);
  return ranNum;
}



