function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;Increase Home Value! Even the smallest home improvements will show big return on investment.';
	Quotation[1] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;Boost your homes function inside or out.';
	Quotation[2] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;Give your home a facelift! adding new siding, windows or even a new porch can take years off a home or enhance it&#8217;s special qualities.';
	Quotation[3] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;It&#8217;s easier to improve than move. Why hassle with selling, packing, moving when a new deck, addition or renovation will give you that new home feel all over.';
	Quotation[4] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;Superior selection from the top product manufacturers. Quaker State Construction prides itself in using quality materials from the industry leaders in construction material for home improvements.';
	Quotation[5] = '<h3>Why Choose Quaker State Construction?</h3>&#8226;&nbsp;50 Years of Quality - Quaker States decades of design experience allows you the comfort of knowing making those tough decisions like what materials to use, what accessories to add, layouts of form versus function, etc. will be easy with the guidance of our knowledgeable contractors and helpful staff.';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*5000);
}
