		<!--
		/* Eric Newlon at www.cor-creative.com */
		// State variables to keep track of initial current object in the ID tag
		var currentIMG = "IMG1";
		
		// Function to switch new object styles to old
		function makeIMGCurrent(newIMG) {
    		if (currentIMG != newIMG) {
        		// Adjust the styles for the new and old objects
        		var thisIMG = document.getElementById(newIMG);
        		thisIMG.className = "currentVid";
        		var oldIMG = document.getElementById(currentIMG);
        		oldIMG.className = "VidProdSamplTN";
		
        		// Make the new tab the current tab
        		currentIMG = newIMG;
       		 }
		}
		//-->