// JavaScript Document
$(document).ready( function() {
	
	var eventDate = new Date(2011, 10-1, 25); //Event Date for countdown culculation
	
	$('#countdown_display').countdown({until: eventDate, format: 'd', layout: '{dn}'});
	
	//code for fading testimonials
	var quotes = new Array();
	quotes[0] = "<cite>\"In my opinion, this is THE major event in the CDN space.\"</cite><p>Cisco Systems</p>";
	quotes[1] = "<cite>\"The timing and positioning of what Informa have done with the CDN World Summit is phenomenal\"</cite><p>(BT)</p>";
	quotes[2] = "<cite>\"In my opinion, this is THE major event in the CDN space.\"</cite><p>Cisco Systems</p>";	
	var counter = 0;
	setInterval(function() {
		$("#testimonial-inner").fadeOut('1000', function() {
			$("#testimonial-inner").html(quotes[counter]);
		});
		if(counter == 2) {
			counter = 0;
		}
		counter++;
		/* Comes last to keep it in this state for 3000ms */
		$("#testimonial-inner").fadeIn('1000');
	}, 3000);

});
