		var stShow = 0;
		//Stops the show
		function stopShow(){
			stShow = 1;
		}

		//Starts the show
		function startShow(){
			stShow = 0;
			dispElement2("Show",1,11,1200,800)
			sObject = document.getElementById("Stop");
			if (sObject != null) {	sObject.style.display = ''; }
			sObject = document.getElementById("Start");
			if (sObject != null) {	sObject.style.display = 'none'; }
		}

		//Resets all of the images inside of the FlowContainer
		function reset(){
			var i = 0;
			var sObject = "";
			for(i=2;i<12;i++){
				sObject = document.getElementById("Show" + i);
				if (sObject != null) { sObject.style.display = 'none'; }
				if (i == 10){
					sObject = document.getElementById("Show" + i + "a");
					if (sObject != null) { sObject.style.display = 'none'; }
				}
				if (i == 9){
					sObject = document.getElementById("Show6" + i);
					if (sObject != null) { sObject.style.display = 'none'; }
					sObject = document.getElementById("Show6" + i + "a");
					if (sObject != null) { sObject.style.display = 'none'; }
				}
			}
			startShow();
		}

		//shows all of the images inside of the FlowContainer
		function showAll(){
			var i = 0;
			var sObject = "";
			for(i=2;i<12;i++){
				sObject = document.getElementById("Show" + i);
				if (sObject != null) {
					sObject.style.display = '';
					sObject.style.opacity = (100 / 100); 
					sObject.style.MozOpacity = (100 / 100); 
				    	sObject.style.filter = "alpha(opacity=100)"; 
				}
				if (i == 10){
					sObject = document.getElementById("Show" + i + "a");
					if (sObject != null) { 
						sObject.style.display = '';
						sObject.style.opacity = (100 / 100); 
						sObject.style.MozOpacity = (100 / 100); 
				    		sObject.style.filter = "alpha(opacity=100)"; 
					}
				}
				if (i == 9){
					sObject = document.getElementById("Show6" + i);
					if (sObject != null) { 
						sObject.style.display = '';
						sObject.style.opacity = (100 / 100); 
						sObject.style.MozOpacity = (100 / 100); 
					    	sObject.style.filter = "alpha(opacity=100)"; 
					}
					sObject = document.getElementById("Show6" + i + "a");
					if (sObject != null) {
						sObject.style.display = '';
						sObject.style.opacity = (100 / 100); 
						sObject.style.MozOpacity = (100 / 100); 
					    	sObject.style.filter = "alpha(opacity=100)"; 
					}
				}
			}
			sObject = document.getElementById("Stop");
			if (sObject != null) {	sObject.style.display = 'none'; }
			sObject = document.getElementById("Start");
			if (sObject != null) {	sObject.style.display = ''; }
		}


	/*Displays the element
	Parameters:
		1.  ID Prefix (End should end in a number)
		2.  Number of the first visible element
		3.  Max number of elements
		4.  Speed at whtch to rotate (In milliseconds)
		5.  Speed at which to fade (In milliseconds)
	*/
	function dispElement2(bId,vElm,max,rsp,fsp){
		var sO;
		var sO2;
		var nElm = vElm + 1;
		if (vElm == max) nElm = 1;
		for (var i=1;i<=max;i++){
			if (i == vElm){
				fade(bId + nElm,fsp,0,100);
				if (i == 5){
					fade(bId + nElm + "9",fsp,0,100);
					fade(bId + nElm + "9a",fsp,0,100);
				}
				if (i == 8){
					fade(bId + "6" + nElm,fsp,0,100);
					fade(bId + "6" + nElm + "a",fsp,0,100);
				}
				if (i == 9){
					fade(bId + nElm + "a",fsp,0,100);
				}
				vElm = nElm;
				i = max + 1;
			}
		}	
		if (stShow == 1){
		showAll();
		}
		else if (vElm == max) {
			setTimeout("reset()",rsp * 2);
		}
		else{
			setTimeout("dispElement2('" + bId + "'," + vElm + "," + max + "," + rsp + "," + fsp + ")",rsp);
		}
	}
