<!--	

	quoteDisplayInterval = 21;
	
	numberOfQuotes = 12;

	quoteInfo = new Array;
	quoteInfo[0] = new Array ("smythson", "PCMS has enabled us to advance our existing IT processes in a way that has had an important impact on the business in terms of cost savings but also in improving our internal processes and consequently the service to our customers.", "Devinder Chana<br />IT Director<br />Smythson");
	quoteInfo[1] = new Array ("johnlewis", "Choosing an EPoS system is not only a major investment but it's an important part of retail strategy. Therefore, it needs to have the longevity to not only support our business needs now, but five or ten years down the line.","Simon Russell<br />Head of Multichannel<br />John Lewis");
	quoteInfo[2] = new Array ("basspro", "From the beginning, PCMS has been a very responsive organization to partner with. Throughout the project they were able to handle multiple and varied requests in a timely and responsible way as well as tackling the very tough challenges that would arise.", "Steve Brock<br />Director of Retail &amp; Direct Market Systems<br />Bass Pro Shops");
	quoteInfo[3] = new Array ("krispykreme", "We are delighted with the way our relationship with PCMS has developed.<br /><br />We see the company as a crucial element of our planned expansion and PCMS's strategic input will be integral to our plans.", "Rob Hunt<br />Finance Director<br />Krispy Kreme");
	quoteInfo[4] = new Array ("basspro2", "During the selection process our criteria was simple. Bass Pro needed a system that was scalable, had the ability to address international markets, and be easily configured.  In addition, VISION BeanStore allowed our own IT Organization to work hand-in-hand to rollout stores quickly, while training to be self-sufficient for future cost savings.", "Steve Brock<br />Director of Retail &amp; Direct Market Systems<br />Bass Pro Shops");
	quoteInfo[5] = new Array ("luxottica", "The commitment and ownership of the project from the PCMS resources was just as strong as that from our internal folks. They 'owned' it and wanted to see the success as much as we did.", "Tom Koch<br />Vice President, Store Systems<br />Luxottica Retail");
	quoteInfo[6] = new Array ("johnlewis2", "After thorough research of the major EPoS providers, we choose VISION BeanStore as it best reflected our selection strategy for a solution that is agile and flexible enough to meet the demands of our business and our customers now and in the future.","Simon Russell<br />Head of Multichannel<br />John Lewis");
	quoteInfo[7] = new Array ("basspro3", "PCMS's vast retail experience coupled with the strong architecture of the VISION BeanStore application enabled Bass Pro Shops to leverage and improve our existing processes.  We enhanced both the customer and employee experience in the store through improvements to reports, training, and register performance &amp; personalities.", "Steve Brock<br />Director of Retail &amp; Direct Market Systems<br />Bass Pro Shops");
	quoteInfo[8] = new Array ("waitrose", "From a point of sale perspective, we want to differentiate our customer service by our ongoing commitment to improving customer experience and increasing speed through the checkouts.", "Sally Hodgson<br />Manager, EPoS Development<br />Waitrose");
	quoteInfo[9] = new Array ("marksspencer", "Following a thorough selection process, PCMS was chosen because of the rich functionality of its BeanStore solution and its partnership approach.", "Darrell Stein<br />IT Director<br />Marks &amp; Spencer");
	quoteInfo[10] = new Array ("johnlewis3", "...we have confidence that PCMS can provide us with the complete package in terms of an EPoS solution and delivery expertise. We know that PCMS will be a long-term strategic partner and will continue to add value with their forward-thinking and proactive approach...","Simon Russell<br />Head of Multichannel<br />John Lewis");
	quoteInfo[11] = new Array ("basspro4", "PCMS was able to meet all requested target dates throughout the rollout process. Even a Canadian store did not slow down the schedule.  Store management and staff were extremely pleased with the system's ease of use and flexibility and the transition has been excellent including drastically reduced training time for associates.", "Steve Brock<br />Director of Retail &amp; Direct Market Systems<br />Bass Pro Shops");

	function canManipulateImagesC() {
    	if (document.images){
			return true;
		}else{
			return false;
		}
	}
	
	function loadQuote(quoteClass, quoteText, quotePerson) {
		if(gImageCapableBrowserC) {			
			document.getElementById('right_pane_quotes').setAttribute('class', quoteClass);
			document.getElementById('right_pane_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]+ " floatleft store"),(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);

// -->
