var activeSub=0;
var SubNum=0;

//Define global variables

var timerID = null;
var timerOn = false;
var timecount = 1000;
var what = null;
var newbrowser = true;
var check = false;

// Turns the layers on and off
function showLayer(layerName){
	//unused in AxisTemplate
}

function showLayerPage(layerName, anchorName) {
	//unused in AxisTemplate
}
    	
function showLayerPosition(layerName, anchorName) {
	var pos = $("#"+anchorName).position();
	$("#"+layerName).css("top", pos.top + "px" );
	$("#"+layerName).css("left", pos.left + "px" );
	$("#"+layerName).css("visibility", "visible" );
}
			
function showLayerPositionLeft(layerName, anchorName) {
	//unused in AxisTemplate
}

function hideLayer(layerName) {
	$("#"+layerName).hide();
}

function startTime() {
	        if (timerOn == false) {
                timerID=setTimeout( "hideAll()" , timecount);
                timerOn = true;
	        }
}

function stopTime() {
	        if (timerOn) {
    	        clearTimeout(timerID);
                timerID = null;
                timerOn = false;
	        }
}

function onLoad() {
	//unused in AxisTemplate
}
