
/*

THIS .JS FILE REQUIRES THAT JAVASCRIPT
IS ENABLED ON THE CLIENT. IF NOT THEN THE
DEFAULT 'NOSCRIPT' QUOTE WILL BE INVOKED

*/


function randomQuote(){

	var randomQuoteNum = Math.floor(Math.random()*9);

	var randomQuoteQuote = new Array(9) 
		randomQuoteQuote[0]="<p>Carter are located only one hour away from London Heathrow so please come and visit us</p>"; 
		randomQuoteQuote[1]="<p>Carter achieved BS EN ISO 9001:2000 certification in February 2007</p>"; 
		randomQuoteQuote[2]="<p>Carter can deliver to most European & USA destinations on a next morning basis for urgent requirements</p>"; 
		randomQuoteQuote[3]="<p>Carter exported to 22 different countries last year</p>"; 
		randomQuoteQuote[4]="<p>Carter have no minimum order quantity on most hybrid and ceramic ball bearing sizes</p>";
		randomQuoteQuote[5]="<p>Carter carry hybrid and ceramic bearings in stock and can offer a 7-10 day lead time on other sizes</p>"; 
		randomQuoteQuote[6]="<p>At Carter we can speak to our customers in 8 different languages</p>"; 
		randomQuoteQuote[7]="<p>Carter offers in excess of 20 different configurations of Hybrids and Ceramic materials</p>"; 
		randomQuoteQuote[8]="<p>The KMF range consists of 57 series of different bearing solutions</p>"; 
	return randomQuoteQuote[randomQuoteNum];
}
document.write(randomQuote());