// JavaScript Document
var quotesSlideShow={};
quotesSlideShow.items=[
					  	{content:"I've been working in technology for more than 7 years and 10Duke are the best technical team I've worked with.", author:"- Melissa Freedman, Technical Director,<br />Masher" },
						{content:"Their Social Media Application Platform enabled them to quickly and cost effectively build our engaging community.", author:"- Richard Glover, General Manager,<br />Arsenal Broadband"},
						{content:"Huge opportunities exist for our sport online. 10Duke allows us to engage the community in a way never done before.", author:"- Etienne De Villiers, Former President,<br />ATP World Tour"},
						{content:"Having Masher available on a stable, scalable platform enables us to focus on growing our user base", author:"- James Clifton, Chief Operating Officer,<br />Masher"},
						{content:"10Duke's technology has allowed our core creative concept to be deployed both on the web and on mobile phones.", author:"- Patrick Brindle, Managing Director,<br />Euro RSCG Life"},
						{content:"10Duke has allowed us to extend the reach and dynamism of the campaign in a way that is relevant to our audience.", author:"- Mike Biscoe, Head of Marketing,<br />Maserati GB"},
						{content:"10Duke's interactive technology is a crucial way of engaging with people and building support for our campaign.", author:"- Rob Bell, Climate Change Ambassador,<br />Ben &amp; Jerry's"},
						{content:"Our core creative concept is easily deployed by 10Duke both on the web and via mobile phones to engage the consumer.", author:"- David Trafford, Brand Solutions Manager,<br />BBC Top Gear"},
						{content:"10Duke's technology has allowed our core concept to be easily deployed online to engage our target audience.", author:"- Nick Dryden, Co-Founder,<br />Xtaster"},
						{content:"10Duke's technology made it easy for us to redesign the site and include the social networking elements we wanted.", author:"- Craig Denton, CEO,<br />Online AllStars"}
					  ];


/*
	<text content="I've been working in technology for more than 7 years and 10Duke are the best technical team I've worked with." author="- Melissa Freedman, Masher" /> 
	<text content="Their Social Media Application Platform enabled them to quickly and cost effectively build our engaging community." author="- Richard Glover, Arsenal Broadband" /> 
	<text content="Huge opportunities exist for our sport online. 10Duke allows us to engage the community in a way never done before." author="- Etienne De Villiers, ATP World Tour" />   
	<text content="Having Masher available on a stable, scalable platform enables us to focus on growing our user base." author="- James Clifton, Masher" /> 
	<text content="10Duke's technology has allowed our core creative concept to be deployed both on the web and on mobile phones." author="- Patrick Brindle, Euro RSCG Life" /> 
	<text content="10Duke has allowed us to extend the reach and dynamism of the campaign in a way that is relevant to our audience." author="- Mike Biscoe, Maserati GB" /> 
	<text content="10Duke's interactive technology is a crucial way of engaging with people and building support for our campaign." author="- Rob Bell, Ben &amp; Jerry's" /> 
	<text content="Our core creative concept is easily deployed by 10Duke both on the web and via mobile phones to engage the consumer." author="- David Trafford, BBC Top Gear" /> 
	<text content="10Duke's technology has allowed our core concept to be easily deployed online to engage our target audience." author="- Nick Dryden, Xtaster" /> 
	<text content="10Duke's technology made it easy for us to redesign the site and include the social networking elements we wanted." author="- Craig Denton, Online AllStars" /> 


*/
quotesSlideShow.currentItem=-1;
quotesSlideShow.start=function(){
	var d=document.getElementById("quotes");
	  if(d){
		  var t=[];
		  t[t.length]='<div class="noscript_slides">';
		  t[t.length]='<p id="quote"></p>';
		  t[t.length]='<p id="quoter"></p>';
		  t[t.length]='</div>';
		  d.innerHTML=t.join("");
			quotesSlideShow.showNextSlide();
	  }
};
quotesSlideShow.showNextSlide = function(){
  quotesSlideShow.currentItem++;
  if(quotesSlideShow.currentItem>=quotesSlideShow.items.length){
	  quotesSlideShow.currentItem=0;
  }
	
	var quote=document.getElementById("quote");
	if(quote){
		  quote.innerHTML=quotesSlideShow.items[quotesSlideShow.currentItem].content;
	}
	var quoter=document.getElementById("quoter");
	if(quoter){
		  quoter.innerHTML=quotesSlideShow.items[quotesSlideShow.currentItem].author;
	}
	setTimeout(function(){quotesSlideShow.showNextSlide();},7000);
};