// JavaScript Document

var stopRotate = 'no';
var flipspeed = 8;
var count = 1;

$(document).ready(function() {
	$('#promoBox2').hide();
	$('#promoBox3').hide();
	rotateImages();
});

function viewBox(id) {
//	$('#imageChooser li').removeClass("active");
	$('#promoBox'+id).addClass("active");
	$('#featured2 .promoBox').each(function() {
		if($(this).is(":visible"))
		{
			$(this).fadeOut();
		}
	});
	$('#promoBox'+id).fadeIn();
}

function rotateImages() {
	if (stopRotate != 'yes') {
		setTimeout(function() { 
			if (count < 3) {
				count++;
			} else {
				count = 1;
			}
			if (stopRotate == 'no')
			{
				viewBox(count);
			}
			rotateImages();
		}, flipspeed*1000);
	}
}

