
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]="When Wendy and I were going to sell the house, we knew we had to replace the countertops in the house...but we didn't want to pay a fortune. A friend told me about Countertop Makeovers and I saved thousands and even got way more then my listing price!<br /><small>Wendy and Steven</small>";
	
	
	items[1]="My kitchen looked like it was from the 60's, Countertop Makeovers made over my counter and now I have the trendiest kitchen on the block, I never want to leave it!<br /><small>Pearl and Duncan</small>";
	
   
	
   

function rotater() {
   
 var r = Math.floor(Math.random()*(items.length));
   document.getElementById('placeholder').innerHTML = "<div class='style7 quote' style='color:#666666;line-height:16px;'><img style='display:inline;padding-right:5px;border:none;' src='images/icn_quotes1.gif' />"+items[r]+"<img style='display:inline; padding-left:5px;border:none;' src='images/icn_quotes2.gif' /></div>"; 

   
}

window.onload=rotater;
