// JavaScript Document
$(document).ready( function() {
	
	var eventDate = new Date(2012, 4-1, 24); //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>\"We have had some very good feedback from our attendees at the MVNO Summit - it proved an extremely useful trip, so well done for all the hard work that went into it and making it a success.\"</cite><p>MVNO division, Everything Everywhere</p>";
	quotes[1] = "<cite>\"Heading home from the MVNO Industry Summit in Barcelona! Tnx all friends and colleges for two very good days! #MVNOIS\"</cite><p>MFL, Telenor</p>";
	quotes[2] = "<cite>\"Very good first day at the MVNO Industry Summit. Proud to be the sponsor! #mvnois\"</cite><p>Mteleena_mobile</p>";
	quotes[3] = "<cite>\"Today is the last day for #MVNOIS, there were fantastic and brilliant showcases from #LATAM\"</cite><p>MOB, CAGLAR</p>";
	quotes[4] = "<cite>\"Second day of the MVNO Industry Summit is again very interesting and successful #mvnois\"</cite><p>Mteleena_mobile Teleena</p>";
	quotes[5] = "<cite>\"Thank you and your colleagues at Informa for organizing such a wonderful event!\"</cite><p>M GL, EU Software Department, Huawei</p>";
	quotes[6] = "<cite>\"The first day was amazing, new productive information to who need to better understand the new business model to apply in new market in Brasil.\"</cite><p>MRP, MY Business, Brasil</p>";
	quotes[7] = "<cite>\"As it was my first visit to the MVNO forum I found the variety of topics to be both informative and useful. Also it was a great opportunity to get an insight to the developments amongst the MNVE community and how they were being translated into MVNO scenarios. I will certainly be attending in the future.\"</cite><p>Paul Y. Wade, Chief Marketing Officer, Smarter Mobile</p>";
	quotes[8] = "<cite>\"I'd like to thank Informa for a well-run and successful conference in Barcelona. It was both useful and informative for MARC Group.\"</cite><p>Rabi Chowdhury, Director, MARC GROUP UK</p>";
	quotes[9] = "<cite>\"The summit event was very good, both from the event organisation and the presentation-contents points of view.\"</cite><p>Baris Balut, MVNO Manager, Dsmart/Smile, Turkey</p>";
	quotes[10] = "<cite>\"It has been a great event. Thank you again for your invitation.\"</cite><p>Pedro Serrahima, Managing Director, Pepephone, Spain – Speaker at MVNO Industry Summit 2010</p>";



	
	var counter1 = 0;
	setInterval(function() {
		$("#testimonial-inner").fadeOut('1000', function() {
			$("#testimonial-inner").html(quotes[counter1]);
		});
		if(counter1 == 10) {
			counter1 = -1;
		}
		counter1++;
		/* Comes last to keep it in this state for 3000ms */
		$("#testimonial-inner").fadeIn('1000');
	}, 5000);
	

	//code for fading key points
	var keypoints = new Array();
	keypoints[0] = "60% Discount for MVNOs, Retailers, and Brands";
	keypoints[1] = "Announcing the MVNOs Industry Summit 2012 Launching the Next Ten Years";
	keypoints[2] = "New! Third Day Dedicated to Retailers, Brands, Wifi and Cloud!";
	keypoints[3] = "2/3rds MVNO and MNO attendance consistently across our events";
	keypoints[4] = "48 Countries Attendance in Barcelona 2011";
	keypoints[5] = "65% Totally New Speakers";

	
	var counter2 = 0;
	setInterval(function() {
		$("#keypoints-inner").fadeOut('1000', function() {
			$("#keypoints-inner").html(keypoints[counter2]);
		});
		if(counter2 == 5) {
			counter2 = -1;
		}
		counter2++;
		/* Comes last to keep it in this state for 3000ms */
		$("#keypoints-inner").fadeIn('1000');
	}, 5000);


	
	
	//code for scrolling speakers
	if($.fn.listScrollerVertical) {
		$('#listItems2').listScrollerVertical({
			direction:-1,
			duration:3000,
			speed:600
		});
    }
	
	
	
});





