$(document).ready(function() {
var index = 0;
	var carouselBoxes = new Array();
	
	carouselBoxes[2] = '<a target="_blank" href="http://thedcpost.com/dcpost-orderform.php"><img src="http://www.thedcpost.com/wp-content/themes/wp-andreas01-12/img/carousel/NO2O2012Bumper-Small.jpg" width="100%" height="100%" /></a>';
	
	carouselBoxes[1] = '<a target="_blank" href="http://thedcpost.com/dcpost-orderform.php"><img src="http://www.thedcpost.com/wp-content/themes/wp-andreas01-12/img/carousel/NO2O2012Bumper-Small.jpg" width="100%" height="100%" /></a>';
	
	carouselBoxes[0] = '<a target="_blank" href="http://thedcpost.com/dcpost-orderform.php"><img src="http://www.thedcpost.com/wp-content/themes/wp-andreas01-12/img/carousel/NO2O2012Bumper-Small.jpg" width="100%" height="100%" /></a>';

	
	carousel = {};
	carousel.revolve = function() { 
		if (index == 0) {
			$('#shirtBox').html(carouselBoxes[1]);
			index = 1;
		}
		else if (index == 1) {
			$('#shirtBox').html(carouselBoxes[2]);
			index = 2;
		}
		else {
			$('#shirtBox').html(carouselBoxes[0]);
			index = 0;
		}
		
	};

	
	setInterval(carousel.revolve, 7000);
  
});
