$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	'<p>"ISC provides DNC with outstanding security personnel for all our corporate event requirements. Quality of staff, customer service and flexibility make ISC a truly integrated part of our team. We unreservedly recommend them"</p><p class="author"><strong>Vicky Jones,<br />Special Events Coordination Manager,<br />Delaware North Companies at Wembley Stadium</strong></p>', 
	'<p>"ISC provide excellent, fully trained staff with positive attitudes. They are extremely helpful and provide a valuable addition to our team"</p><p class="author"><strong>Stephen Daniels,<br />Quintain</strong></p>', 
	'<p>"Smart, polite and helpful, ISC’s corporate event staff welcome our guests with the right message and ensure the smooth running of our events"</p><p class="author"><strong>Trudy Wiese,<br />Events Manager,<br />Science Museum,<br />London</strong></p>',
	'<p>"ISC provide key members of our event day senior management team. Their staff have unrivalled event experience and effortlessly integrate with our in-house teams"</p><p class="author"><strong>Nick Woodhouse,<br />Safety Officer,<br />Wembley National Stadium Limited</strong></p>',
	'<p>"ISC provide the NFL with efficient, appropriately selected security staff for our extremely diverse requirements, from drivers to hotel and event security. Their customer service and quality of personnel is second to none"</p><p class="author"><strong>Joe Hummell,<br />American NFL</strong></p>',
	'<p>"ISC\'s recruitment consultancy service is excellent. ISC source and match candidates to fulfil an exact brief, making the recruitment process efficient and stress free"</p><p class="author"><strong>Angela Horan,<br />Brent In2 Work</strong></p>',
	'<p>"ISC provide a great service from beginning to end. Their staff were helpful, polite and professional at all times and without doubt contributed to the success of our events"</p><p class="author"><strong>Lindsay Chrystie,<br />Logistics Manager,<br />Economist Conferences</strong></p>',
	'<p>"Our security team was fantastic; they did a great job of looking inconspicuous. Thank you!"</p><p class="author"><strong>Catherine Boyd,<br />Cheerleading Assistant,<br />Tampa Bay Buccaneers</strong></p>'
	);
	i = 0;
	tickerIt();
}

function tickerIt(){
	if( i == tickerItems.length ){
		i = 0;
	}
	//change without effect
	//$('#ticker').html(tickerItems[i]);

	//change with effect
	$('#ticker').fadeOut("slow", function(){
		$(this).html(tickerItems[i]).fadeIn("slow");
		i++;
	});
	
	//repeat - change 5000 - time interval
	setTimeout("tickerIt()", 10000);
}
