gcMapAnimationCandidates=[];
gcMapAnimationIndex=0;
gcMapAnimationTimer='';
gcMapUnpauseTimer='';
gcMapAnimationDelay=1500;
function gcMapInit(id) {
	navRoot = document.getElementById('goldenChainMapLinks').getElementsByTagName('div')[0];
	gcMapAnimationCandidates=navRoot.getElementsByTagName('a');
	for(var i=0;i<gcMapAnimationCandidates.length;i++) {
		var node=gcMapAnimationCandidates[i];
		node.onmouseover=gcMapPause;
		node.onmouseout=function(){gcMapUnpauseTimer=window.setTimeout('gcMapUnpause();',700);}
	}
	gcMapAnimate();
}
//window.onload=startList;
function gcMapAnimate() {
	var old=gcMapGetNext();
	old.className=old.className.replace(' over','');
	gcMapAnimationCandidates[gcMapAnimationIndex++].className+=' over';
	if(gcMapAnimationIndex>=gcMapAnimationCandidates.length) gcMapAnimationIndex=0;
	gcMapAnimationTimer=window.setTimeout('gcMapAnimate();',gcMapAnimationDelay);
}
function gcMapPause() {
	window.clearTimeout(gcMapUnpauseTimer);
	window.clearTimeout(gcMapAnimationTimer);
	var old=gcMapGetNext();
	old.className=old.className.replace(' over','');
}
function gcMapUnpause() {
	gcMapGetNext().className+=' over';
	gcMapAnimationTimer=window.setTimeout('gcMapAnimate();',gcMapAnimationDelay);
}
function gcMapGetNext() {return gcMapAnimationIndex?gcMapAnimationCandidates[gcMapAnimationIndex-1]:gcMapAnimationCandidates[gcMapAnimationCandidates.length-1];}

window.init[window.init.length]=gcMapInit;