	var img_root = "/media/site/images/consumer/digital/featured/"
	var images = new Array();
	
	images[0] = "0";
	images[1] = "1";
	images[2] = "2";
	images[3] = "3";
	images[4] = "4";
	images[5] = "5";
	images[6] = "6";		
	images[7] = "0";
	images[8] = "1";
	images[9] = "2";
	images[10] = "3";
	images[11] = "4";
	images[12] = "5";
	images[13] = "6";	
	images[14] = "0";
	images[15] = "1";
	images[16] = "2";
	
	function showImage(image) {
		var offset = image.src.match(/(\d+)_[ls]\.gif$/);
		var target = 4 + parseInt(offset[1]);
		for (var x = 0; x < 7; x++) {
		img = document.getElementById("img_" + x);
			var new_img = img_root + images[target];
			if (x == 3) {
				img.src = new_img + "_l.gif";
				img.className = target;
			} else {
				img.src = new_img + "_s.gif";
				img.className = target;
			}
			target++;
		}
	}
	
	function navigateImages(direction) {
		var img = document.getElementById("img_2");
		if (direction == "next") {
			img = document.getElementById("img_4");
		}
		var offset = img.src.match(/(\d+)_[ls]\.gif$/);
		var target = 4 + parseInt(offset[1]);
		
		for (var x = 0; x < 7; x++) {
		img = document.getElementById("img_" + x);
			var new_img = img_root + images[target];
			if (x == 3) {
				img.src = new_img + "_l.gif";
				img.className = target;
			} else {
				img.src = new_img + "_s.gif";
				img.className = target;
			}
			target++;
		}
	}