/**
 * shotgun slideshow
 */
var maxshotgunsImages = 0;
var currentshotgunsImages = 0;
var shotgunTimeout = null;
function slideshowShotguns(){
	maxshotgunsImages = $("#shotguns-homepage .box1 .shotguns").children().length;
	$("#shotguns-homepage .box1 .shotguns .shotgun-0").addClass('active');
	shotgunTimeout = window.setTimeout("slideShotguns()",10000);
}

function slideShotguns(){
	
	$("#shotguns-homepage .box1 .preview").hide();
	$("#shotguns-homepage .box1 .shotguns .shotgun-"+currentshotgunsImages).removeClass('active');
	currentshotgunsImages++;
	
	if( currentshotgunsImages > ( maxshotgunsImages-1) ){	
		currentshotgunsImages = 0;	
	}
	var newpreview = $("#shotguns-homepage .box1 .shotguns .shotgun-"+currentshotgunsImages+" .hidden").html();
	$("#shotguns-homepage .box1 .shotguns .shotgun-"+currentshotgunsImages).addClass('active');
	
	$("#shotguns-homepage .box1 .preview").html(newpreview);
	$("#shotguns-homepage .box1 .preview").fadeIn();
	shotgunTimeout = window.setTimeout("slideShotguns()",10000);
}

/**
 * manual sliding
 */
function stopSlideshowShotGunandGoto(e){
	window.clearTimeout(shotgunTimeout);
	
	$("#shotguns-homepage .box1 .preview").hide();
	$("#shotguns-homepage .box1 .shotguns .shotgun").removeClass('active');
	
	var newpreview = $(e).children(".hidden").html();
	$(e).addClass("active");
	
	$("#shotguns-homepage .box1 .preview").html(newpreview);
	$("#shotguns-homepage .box1 .preview").fadeIn();
}

$(document).ready(function(){
	$("#shotguns-homepage .box1 .shotguns .shotgun").click(function(){
		stopSlideshowShotGunandGoto(this);
	});
});

slideshowShotguns();
