	$(document).ready(function() {
		var items = 4; // total number of items rotating
		var index = 0;
		$("#gallery").children("img").hide();
		$("#gallery").children("img:first").show();
		$("#gallery-thumbs li:first").addClass("current");
		$("#gallery img:first").addClass("active");
		
		setInterval(changeGallery, 4000); // speed in milliseconds (1,000 = 1 second)
		
		function changeGallery() {
			if(index == (items - 1)) {
				index = -1;
				$("#gallery-thumbs li").removeClass("current");
				$("#gallery-thumbs li:first-child").addClass("current");
				$("#gallery img.active").removeClass("active").fadeOut("slow").siblings().filter(":first").fadeIn("slow").addClass("active");
				index = index + 1; // Next index, cycling
			} else {
				index = index + 1; // Next index, cycling
				$("#gallery-thumbs li.current").removeClass("current").next().addClass("current");
				$("#gallery img.active").removeClass("active").fadeOut("slow").next().fadeIn("slow").addClass("active");
			}
		}
		
	});
