$(document).ready(function(){
	// Load Default
	$('#espot1').html('<img src="images/content/promotions/promo-water-bottle.png" alt="" />');
	// Produce Rotating Banner
	var currentSpot = 1;
	$.timer(2000, function(){
		if (currentSpot == 0) {
			$('#espot1').html('<img src="images/content/promotions/promo-water-bottle.png" alt="" />');
		} else if (currentSpot == 1) {
			$('#espot1').html('<img src="images/content/promotions/promo-spinning-guide.png" alt="" />');
		} else if (currentSpot == 2) {
			$('#espot1').html('<img src="images/content/promotions/promo-weight-loss-program.png" alt="" />');
		} else if (currentSpot == 3) {
			$('#espot1').html('<img src="images/content/promotions/promo-workout-dvd.png" alt="" />');
		}
		currentSpot = (currentSpot != 3) ? currentSpot + 1 : 0;
	});
});
