/* Product Selection */
$(document).ready(function() {
	$("#boxshots a:first").addClass("selected");

	$("#boxshots a").click(function() {
		$("#boxshots a").removeClass("selected");
		$(this).addClass("selected");
		$("#boxshot").attr("src",this.href);
		$("#shot1Link, .btn-view #shot1Link").attr("href",this.rel);
		return false;
	},function(){
		$(this).removeClass("selected");
	});
});



/* Product loop */
function productLoop(){
	imgs = $("#boxshots li").size();
	$("#boxshots li:nth-child(" + i + ") a").trigger("click");
	setTimeout("productLoop()", 5000);
	if (i == imgs)
	{
		i=1;
	}
	else { i++; }
}


$(document).ready(function(){
	i = 1;
	productLoop();
});