
var howOften = 2; //number often in seconds to rotate
var current = 0; //start the counter at 0
var ns6 = document.getElementById&&!document.all; //detect netscape 6

// place your images, text, etc in the array elements here
var items = new Array();
  
  
    items[0]="Last Monday we received a $100K deposit for my first significant export order. The skills acquired while at the workshop put me in a position to negotiate this order.<br /><small>Tony D., Sarasota, Florida</small> ";
	
	
	items[1]="We have been able to penetrate <b>a new export market</a>, resulting in immediate sales and unlimited potential with relatively no increase to our marketing budget<br /><small>Tim N., Bradenton, Florida</small>";
	
    items[2]="Dave was the most highly-rated instructor we brought into our 8 month program, with an average score of 9.7 out a possible 10<br /><small>Carolina P., Toronto, Ontario</small>";
	
	
	
	items[3]="Within three months of promoting our company in the Mexican market we received our first order for over $80,000<br /><small>Dennis M., Lindsay, Ontario</small>";
	
	
	items[4]="In only two days I wrote my Export Plan, got all the answers I needed, and started exporting when I returned to my office<br /><small>Rick C., Calgary, Alberta</small>";
	
   

function rotater() {
   
 var r = Math.floor(Math.random()*(items.length-1));
   document.getElementById('placeholder').innerHTML = "<div class='style7 quote' style='color:#666666;line-height:16px;'><img style='display:inline;padding-right:5px;' src='images/icn_quotes1.gif' />"+items[r]+"<img style='display:inline; padding-left:5px;' src='images/icn_quotes2.gif' /></div>"; 

   
}

window.onload=rotater;