<!--

	function toggleDiv(divId, arrowObj){
		if(arrowObj.src.indexOf("shutArrow.gif") > 0){
			return showDiv(divId, arrowObj);
		}else{
			return hideDiv(divId, arrowObj);
		}//end if
	}//end toggleDiv()

	//if we remove the startPosition className, which took the div
	//out of the video, then it returns to its position in the document
	function showDiv(divId, arrowObj){
		var theDiv = document.getElementById(divId);
		theDiv.className = "";
		arrowObj.src = "/gifimages/openshut/openArrow.gif";
		var offsetLeft = calculateOffset(arrowObj, "offsetLeft");
		theDiv.style.marginLeft = "30px";
		return false;
	}//end showDiv()

	//sets the class to startPosition which takes the div out of the visible video
	function hideDiv(divId, arrowObj){
		var theDiv = document.getElementById(divId);
		theDiv.className = "startPosition";
		arrowObj.src = "/gifimages/openshut/shutArrow.gif";
		return false;
	}//end hideDiv()


// end hide -->

