

var slideShowSpeed = 10000;    //1sec=1000
var t=0;
var j=0;

var Pic = new Array();
Pic[0]='../images/uturn-rotate.gif';
Pic[1]='../images/nhance-rotate.gif';
Pic[2]='../images/mathnasium-rotate.gif';
Pic[3]='../images/abs-rotate.gif';
Pic[4]='../images/FranchisEsource-rotate.gif';
Pic[5]='../images/postnet-rotate.gif';
Pic[6]='../images/dickeys-rotate.jpg';
Pic[7]='../images/chemdry-rotate.gif';
Pic[8]='../images/spraygreen-rotate.gif';
Pic[9]='../images/businessalli-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>',
'As an N-Hance Wood Renewal franchisee you are able to offer a service to consumers that is like nothing else on the market. Not only will they love the results but our unique process can achieve incredible results at a fraction of the cost of.... <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>',
'FranchisEsource Brands International (FSBI) is a synergistic network of related franchise brands that awards franchises to entrepreneurs and those who desire to become one who prove themsleves to be capable of achieving exceptional income, lifestyle,...<FONT class="smallgreylink">MORE</FONT>',
'Whether you are interested in developing a single store, multiple stores, or an entire territory, PostNet has the right opportunity for you. PostNet offers over twenty years in the ... <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>',
'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>',
'Spray Green is the Highest Profit / Lowest Overhead franchise available in the landscape industry today!...  <FONT class="smallgreylink">MORE</FONT>',
'Start Your Rewarding & Lucrative Business With the Industry Leader!  You Dont Need Prior Experience, Because We Train, Certify and Support You for the Life of Your Business on all AE sites they are advertising on... <FONT class="smallgreylink">MORE</FONT>'                  
);
var ALTinfo = new Array(
'U-Turn',
'N Hance',
'Mathnasium',
'American Business Systems',
'FranchisEsource Brands',
'PostNet',
'Dickeys Barbecue',
'Chem-Dry',
'Spray Green',
'Business Alliance'
);
var LINKinfo = new Array(
'/cgi-bin/profile.php?key=4215',
'/cgi-bin/profile.php?key=122914',
'/cgi-bin/profile.php?key=22116',
'/cgi-bin/profile.php?key=6381',
'/cgi-bin/profile.php?key=193311',
'/cgi-bin/profile.php?key=5542',
'/cgi-bin/profile.php?key=4576',
'/cgi-bin/profile.php?key=7894',
'/cgi-bin/profile.php?key=119635',
'/cgi-bin/profile.php?key=4585'
);



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;
}


