function _flashGoto(i) {
	try {
		switch(i) {
			case 0:
				getCarousel().goFirst();
				break;
			case 1:
				getCarousel().goSecond();
				break;
			case 2:
				getCarousel().goThird();
				break;
			case 3:
				getCarousel().goFourth();
			break;
		}
	}
		catch (ex) {
	}
	return 'true';
}

function getCarousel() {
	var flashMovie=document.getElementById('carouselLarge');
	
	if (flashMovie===null) {
		flashMovie=document.getElementById('carouselSmall');
	}
	return flashMovie;
}

function goFirst() {
}