var quotes=new Array()
var images=new Array()
//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Introducing PAR\'s new PAR Platinum Plus Certified Program! <a href="plat_program_details.pdf" target="_blank" class="nav_red_sm_serif">more ></a>'
images[0]=''



var whichquote=Math.floor(Math.random()*(quotes.length))
function ranQuote() {
// removed this line and replaced the js quotes with the "what's new" header image
//	document.write ('<div><img src="images/spacer.gif" height="1" width="16"><img src="images/quotes/' + images[whichquote] + '" border="0"></div><div style="padding-left: 15px;"><div class="copy_successories" style="width: 190px;">'+ quotes[whichquote] + '</div></div>');
	document.write ('<div><img src="images/spacer.gif" height="1" width="16"><img src="images/quotes/whats_new_head.gif" border="0"></div><div style="padding-left: 15px;"><div class="copy_successories" style="width: 190px;">'+ quotes[whichquote] + '</div></div>');
}