//---------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------
// This function is called by "onload" for the document body
	function initBody()
	{
	initWorkshopTabs();
	initAboutUsTabs();
	initHorizontalTabs();
	initProductTabs();
	}

	var moreFlag = true;
	var indexTableObj;
	function switchMore(destination, source1, source2) {
	    indexTableObj = document.getElementById("indexTable");
	    var source1Obj = document.getElementById(source1);
	    var source2Obj = document.getElementById(source2);
	    if (moreFlag) {
	        moreFlag = false;
	        destination.innerHTML = source1Obj.innerHTML;
	        indexTableObj.style.top = 90;
	    }
	    else {
	        moreFlag = true;
	        destination.innerHTML = source2Obj.innerHTML;
	        indexTableObj.style.top = 320;
	    }
	}
	function trap() {
	    var a;
	    eventIndex = 0;
	    eventLog = new Array();
	}

