<!--	

	quoteDisplayInterval = 21;
	
	numberOfQuotes = 4;

	quoteInfo = new Array;
	
	quoteInfo[0] = new Array ("coop", "Throughout the project, our work with PCMS set the foundations to ensure the provision of improved operational procedures. Not only has this enabled us to deliver better value and service to our customer-base but it also underpins and drives forward our retail strategy.", "A Co-operative Group spokesperson");
	quoteInfo[1] = new Array ("trace", "Thanks to PCMS's hard work, we have already met with several prospective clients. The team at PCMS has the knowledge, flexibility and can-do attitude to offer a complete marketing solution and as a result, has paved the way for a number of key business opportunities.", "Bill Davies<br />Managing Director<br />Trace Systems");
	quoteInfo[2] = new Array ("enhanced", "The information that PCMS has delivered is invaluable in opening up communication with potential customers. Developing business leads can be extremely time consuming and the support from PCMS has allowed our staff to concentrate on companies that are already looking for what we can offer.", "Simon White<br />Managing Director<br />Enhanced");
	quoteInfo[3] = new Array ("ses", "PCMS is proactive in developing new ideas and strategies and invests time in ensuring it understands your business fully. Its highly experienced team brought us much closer to many of our potential clients and we are delighted with the results.", "Michael Blatherwick<br />Managing Director<br />SES Ltd");

	function canManipulateImagesC() {
    	if (document.images){
			return true;
		}else{
			return false;
		}
	}
	
	function loadQuote(quoteClass, quoteText, quotePerson) {
		if(gImageCapableBrowserC) {			
			document.getElementById('panel_quotes').setAttribute('class', quoteClass);
			document.getElementById('panel_quotes').setAttribute('className', quoteClass);
			document.getElementById('quote').innerHTML = quoteText;		
			document.getElementById('quote_person').innerHTML = quotePerson;			
			return false;			
	    }else{
	       	return true;
		}
	}	
	
	function nextQuote(currentQuote) {
		loadQuote((quoteInfo[currentQuote][0]+ " column floatleft"),(quoteInfo[currentQuote][1]),(quoteInfo[currentQuote][2]));		   	
		nextIntervalCheck();
	}
	
	function nextIntervalCheck() {
    	countTest = countTest +1;
    	if(countTest == quoteDisplayInterval){			
			currentQuote = (currentQuote + 1) % numberOfQuotes; 
			nextQuote(currentQuote);
			countTest = 0;
    	}
	}

	gImageCapableBrowserC = canManipulateImagesC();
	currentQuote = 0;
	countTest = 0;
	setInterval("nextIntervalCheck()",500);

// -->
