var currentId = 0;
var mute = false;
var kicks = ["balloon_pop", "bubble_wrap", "drop_slide", "hi_five", "light_switch", "liquid_browser", "richard_bruno", "rsi_generator", "skill_game"];
kicks.sort(randomOrder);
//alert("KICKS init " + kicks);

function doNextKick() {

	if (currentId + 1 >= kicks.length) {
		currentId = 0;
	} else {
		currentId = currentId + 1;
	}
	
	//alert("KICKS Next: " + currentId + ", which is " + kicks[currentId]);
	navigate("content/campaigns/kicks_thrills/" + kicks[currentId], "iframe");
	setStatus(kicks[currentId]);
	
	_gaq.push(['_trackEvent', 'kicksenthrills', 'push-button']);
}

function randomOrder(){
	return (Math.round(Math.random())-0.5);
}
