/***************************************************************
*
*  JavaScript DHTML layer menu
*
* $Id: jsfunc.layermenu.js,v 1.3.2.1 2005/08/22 14:14:30 masi Exp $
*
*
*
*  Copyright notice
*
*  (c) 1998-2003 Kasper Skårhøj
*  All rights reserved
*
*  This script is part of the TYPO3 tslib/ library provided by
*  Kasper Skårhøj <kasper@typo3.com> together with TYPO3
*
*  Released under GNU/GPL (see license file in tslib/)
*
*  This script is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*  This copyright notice MUST APPEAR in all copies of this script
***************************************************************/

var GLV_x=0;
var GLV_y=0;
var GLV_curLayerWidth = new Array();
var GLV_curLayerHeight = new Array();
var GLV_curLayerX = new Array();
var GLV_curLayerY = new Array();
var GLV_menuOn = new Array();
var GLV_gap = new Array();
var GLV_currentLayer = new Array();
var GLV_currentROitem = new Array();
var GLV_hasBeenOver = new Array();
var GLV_doReset = new Array();
var GLV_lastKey = new Array();
var GLV_menuXY = new Array();
var GLV_date = new Array();
var GLV_timeout = new Array();
var GLV_timeoutRef = new Array();
var GLV_onlyOnLoad = new Array();
var GLV_dontHideOnMouseUp = new Array();
var GLV_date = new Date();
var GLV_restoreMenu = new Array();
var GLV_timeout_count=0;
var GLV_timeout_pointers = new Array();
var GLV_dontFollowMouse = new Array();

	//browsercheck...
function GL_checkBrowser(){
	this.dom= (document.getElementById);

		// detect version (even if Opera disguises as Mozilla or IE)
	if (op = (navigator.userAgent.indexOf("Opera")>-1))	{
		switch (parseInt(navigator.userAgent.substr(navigator.userAgent.indexOf("Opera")+6)))	{
			case 5:
			case 6:
				this.op5= true;
				break;
			case 7:
			case 8:
				this.op7= true;
				break;
			default:
				this.op4= true;
		}
	}
	this.konq=  (navigator.userAgent.indexOf("Konq")>-1);
	this.ie4= (document.all && !this.dom && !op && !this.konq);
	this.ie5= (document.all && this.dom && !op && !this.konq);
	this.ie6= (this.ie5);
	this.ns4= (document.layers && !this.dom && !this.konq);
	this.ns5= (!document.all && this.dom && !op && !this.konq);
	this.ns6= (this.ns5);
	this.bw=  (this.ie4 || this.ie5 || this.ns4 || this.ns6 || this.konq || op);

	return this;
}
bw= new GL_checkBrowser();

	//NS4 resize fix.
if(document.layers){
    scrX= innerWidth; scrY= innerHeight;
    onresize= function()	{if(scrX!= innerWidth || scrY!= innerHeight)	{history.go(0);}};
}
	//Returns css
function GL_getObjCss(obj){
	return bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?document.layers[obj]:0;
};
function GL_isObjCss(obj){
	flag = bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?document.layers[obj]:0;
	if (flag)	return true;
};
function GL_getObj(obj){
	nest="";
	this.el= bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document."+obj):document.getElementById(obj);
	this.css= bw.ns4?this.el:this.el.style;
	this.ref= bw.ns4?this.el.document:document;
	this.x= (bw.ns4||bw.op5)?this.css.left:this.el.offsetLeft;
	this.y= (bw.ns4||bw.op5)?this.css.top:this.el.offsetTop;
	this.height= (bw.ie4||bw.ie5||bw.ns6||bw.op7)?this.el.offsetHeight:bw.ns4?this.ref.height:bw.op4?this.css.pixelHeight:0;
	this.width= (bw.ie4||bw.ie5||bw.ns6||bw.op7)?this.el.offsetWidth:bw.ns4?this.ref.width:bw.op4?this.css.pixelWidth:0;

	return this;
}
function GL_initLayers() {
	if(bw.ns4) document.captureEvents(Event.MOUSEMOVE);
	GL_timeout_func();
}
function GL_updateTime(WMid)	{
	GLV_date = new Date();
	GLV_timeout[WMid] = GLV_date.getTime();
}
function GL_doResetAll(WMid) {
	var resetSubMenus="";
	eval('resetSubMenus = GL'+WMid+'_resetSubMenus();');
	if (GLV_doReset[WMid] && resetSubMenus) {
		GLV_doReset[WMid] = false;
		GL_hideAll(WMid);
		if (GLV_onlyOnLoad[WMid])	GL_restoreMenu(WMid);
	}
}
function GL_timeout_func()	{
	GLV_date = new Date();
	var stuff="";
	for (var a=0;a<GLV_timeout_count;a++)	{
		WMid = GLV_timeout_pointers[a];
		if (GLV_date.getTime()-GLV_timeout[WMid] > GLV_timeoutRef[WMid])	{
			GL_doResetAll(WMid);
		}
	}
//window.status = GLV_date.getTime()-GLV_timeout[WMid]-GLV_timeoutRef[WMid]
	window.setTimeout("GL_timeout_func();",200);
}
function GL_resetAll(WMid) {
	if (!GLV_doReset[WMid]) {
		GL_updateTime(WMid);
		GLV_doReset[WMid] = true;
	}
}
function GL_mouseUp(WMid,e) {
	GLV_doReset[WMid] = false;
	if (!GLV_dontHideOnMouseUp[WMid])	{
		GL_hideAll(WMid);
		if (GLV_onlyOnLoad[WMid])	GL_restoreMenu(WMid);
	}
}
function GL_stopMove(WMid) {
	GLV_menuOn[WMid] = null;
}
function GL_restoreMenu(WMid)	{
	eval('GL'+WMid+'_restoreMenu()');
}
function GL_doTop(WMid,id) {
	GL_hideAll(WMid);
	if (GL_isObjCss(id))	{
		GLV_menuOn[WMid] = GL_getObjCss(id);
		GLV_menuOn[WMid].visibility = "visible";

		eval('GL'+WMid+'_doTop(WMid,id)');

		var layerObj = GL_getObj(id);
		GLV_curLayerHeight[WMid] = layerObj.height;
		GLV_curLayerWidth[WMid] = layerObj.width;
		GLV_curLayerX[WMid] = layerObj.x;
		GLV_curLayerY[WMid]  = layerObj.y;
		GLV_currentLayer[WMid] = id;
		GLV_hasBeenOver[WMid]=0;
	}
}
	//Capturing mousemove
function GL_getMouse(e) {
	GLV_x= (bw.ns4||bw.ns5)?e.pageX:(bw.ie4||bw.op4)?event.x:(event.x-2)+document.body.scrollLeft;
	GLV_y= (bw.ns4||bw.ns5)?e.pageY:(bw.ie4||bw.op4)?event.y:(event.y-2)+document.body.scrollTop;
}
function GL_mouseMoveEvaluate(WMid)	{
	if (GLV_gap[WMid] && GLV_currentLayer[WMid]!=null)	{
		if (	GLV_x+GLV_gap[WMid]-GLV_curLayerX[WMid] <0 || GLV_y+GLV_gap[WMid]-GLV_curLayerY[WMid] <0 || GLV_curLayerX[WMid]+GLV_curLayerWidth[WMid]+GLV_gap[WMid]-GLV_x <0 || GLV_curLayerY[WMid]+GLV_curLayerHeight[WMid]+GLV_gap[WMid]-GLV_y <0)	{
			if (GLV_hasBeenOver[WMid])	{
				GLV_doReset[WMid]=true;
			}
		} else {
			GL_updateTime(WMid);
			GLV_hasBeenOver[WMid]=1;
			GLV_doReset[WMid]=false;	// Added 120902: When on the layer we do not want the layer to be reset...
		}
	}
}
function GL_hideAll(WMid)	{
	GLV_doReset[WMid] = false;
	GLV_currentLayer[WMid] = null;
	if (GL_isObjCss(GLV_lastKey[WMid]) && GL_getObjCss(GLV_lastKey[WMid]))	{	eval('GL'+WMid+'_hideCode()');	}
	GLV_hasBeenOver[WMid]=0;
}

function GL_iframer(WMid,id,state)	{
	if (bw.ie4||bw.ie5) {
		ifrmObj = bw.ie4?document.all["Iframe"+WMid]:document.getElementById("Iframe"+WMid);
		if (state) {
			parentObj = bw.ie4?document.all[id]:document.getElementById(id);
			ifrmObj.style.filter='Alpha(opacity=0)';
			ifrmObj.style.width = parentObj.offsetWidth + "px";
			ifrmObj.style.height = parentObj.offsetHeight + "px";
			ifrmObj.style.left = parentObj.offsetLeft + "px";
			ifrmObj.style.top = parentObj.offsetTop + "px";
			ifrmObj.style.zIndex = parentObj.style.zIndex-1;
			ifrmObj.style.display = "";
		}
		else ifrmObj.style.display = "none";
	}
}

GLV_curLayerWidth["661322"]=0;
GLV_curLayerHeight["661322"]=0;
GLV_curLayerX["661322"]=0;
GLV_curLayerY["661322"]=0;
GLV_menuOn["661322"] = null;
GLV_gap["661322"]=0;
GLV_currentLayer["661322"] = null;
GLV_currentROitem["661322"] = null;
GLV_hasBeenOver["661322"]=0;
GLV_doReset["661322"]=false;
GLV_lastKey["661322"] = "";
GLV_onlyOnLoad["661322"] = 0;
GLV_dontHideOnMouseUp["661322"] = 0;
GLV_dontFollowMouse["661322"] = 0;
GLV_date = new Date();
GLV_timeout["661322"] = GLV_date.getTime();
GLV_timeoutRef["661322"] = 0;
GLV_menuXY["661322"] = new Array();
GLV_menuXY["661322"]["Menu6613220"] = new Array(0,0,"itemID237964f77f","anchorID237964f77f");
GLV_menuXY["661322"]["Menu6613221"] = new Array(0,0,"itemIDa330eca2ad","anchorIDa330eca2ad");
GLV_menuXY["661322"]["Menu6613222"] = new Array(0,0,"itemID707237f8e6","anchorID707237f8e6");
GLV_menuXY["661322"]["Menu6613223"] = new Array(0,0,"itemIDac3fa66260","anchorIDac3fa66260");
GLV_menuXY["661322"]["Menu6613224"] = new Array(0,0,"itemID43eb024b79","anchorID43eb024b79");
GLV_menuXY["661322"]["Menu6613225"] = new Array(0,0,"itemIDdb8433f641","anchorIDdb8433f641");
GLV_menuXY["661322"]["Menu6613226"] = new Array(0,0,"itemID84a834fa23","anchorID84a834fa23");
GLV_menuXY["661322"]["Menu6613227"] = new Array(0,0,"itemIDc31c351c7a","anchorIDc31c351c7a");
GLV_menuXY["661322"]["Menu6613228"] = new Array(0,0,"itemID26ea01a097","anchorID26ea01a097");

function GL661322_getMouse(e) {
	if (GLV_menuOn["661322"]!=null && !GLV_dontFollowMouse["661322"]){

	}
	GL_mouseMoveEvaluate("661322");
}
function GL661322_hideCode() {

}
function GL661322_doTop(WMid,id) {

}
function GL661322_restoreMenu() {

}
function GL661322_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "661322";
GLV_timeout_count++;



GLV_curLayerWidth["1e6123"]=0;
GLV_curLayerHeight["1e6123"]=0;
GLV_curLayerX["1e6123"]=0;
GLV_curLayerY["1e6123"]=0;
GLV_menuOn["1e6123"] = null;
GLV_gap["1e6123"]=0;
GLV_currentLayer["1e6123"] = null;
GLV_currentROitem["1e6123"] = null;
GLV_hasBeenOver["1e6123"]=0;
GLV_doReset["1e6123"]=false;
GLV_lastKey["1e6123"] = "";
GLV_onlyOnLoad["1e6123"] = 0;
GLV_dontHideOnMouseUp["1e6123"] = 0;
GLV_dontFollowMouse["1e6123"] = 0;
GLV_date = new Date();
GLV_timeout["1e6123"] = GLV_date.getTime();
GLV_timeoutRef["1e6123"] = 0;
GLV_menuXY["1e6123"] = new Array();
GLV_menuXY["1e6123"]["Menu1e61230"] = new Array(0,0,"itemID7904ae58e2","anchorID7904ae58e2");
GLV_menuXY["1e6123"]["Menu1e61231"] = new Array(0,0,"itemIDd53f0ee181","anchorIDd53f0ee181");
GLV_menuXY["1e6123"]["Menu1e61232"] = new Array(0,0,"itemIDdb1a78539c","anchorIDdb1a78539c");
GLV_menuXY["1e6123"]["Menu1e61233"] = new Array(0,0,"itemID4631a17369","anchorID4631a17369");
GLV_menuXY["1e6123"]["Menu1e61234"] = new Array(0,0,"itemID68ef79979e","anchorID68ef79979e");
GLV_menuXY["1e6123"]["Menu1e61235"] = new Array(0,0,"itemIDd2642059a6","anchorIDd2642059a6");
GLV_menuXY["1e6123"]["Menu1e61236"] = new Array(0,0,"itemID98313a0f27","anchorID98313a0f27");
GLV_menuXY["1e6123"]["Menu1e61237"] = new Array(0,0,"itemIDf2cec6dc8d","anchorIDf2cec6dc8d");
GLV_menuXY["1e6123"]["Menu1e61238"] = new Array(0,0,"itemID9186a71310","anchorID9186a71310");
GLV_menuXY["1e6123"]["Menu1e61239"] = new Array(0,0,"itemIDb4b21f6779","anchorIDb4b21f6779");

function GL1e6123_getMouse(e) {
	if (GLV_menuOn["1e6123"]!=null && !GLV_dontFollowMouse["1e6123"]){

	}
	GL_mouseMoveEvaluate("1e6123");
}
function GL1e6123_hideCode() {

}
function GL1e6123_doTop(WMid,id) {

}
function GL1e6123_restoreMenu() {

}
function GL1e6123_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "1e6123";
GLV_timeout_count++;



GLV_curLayerWidth["18ac1b"]=0;
GLV_curLayerHeight["18ac1b"]=0;
GLV_curLayerX["18ac1b"]=0;
GLV_curLayerY["18ac1b"]=0;
GLV_menuOn["18ac1b"] = null;
GLV_gap["18ac1b"]=0;
GLV_currentLayer["18ac1b"] = null;
GLV_currentROitem["18ac1b"] = null;
GLV_hasBeenOver["18ac1b"]=0;
GLV_doReset["18ac1b"]=false;
GLV_lastKey["18ac1b"] = "";
GLV_onlyOnLoad["18ac1b"] = 0;
GLV_dontHideOnMouseUp["18ac1b"] = 0;
GLV_dontFollowMouse["18ac1b"] = 0;
GLV_date = new Date();
GLV_timeout["18ac1b"] = GLV_date.getTime();
GLV_timeoutRef["18ac1b"] = 0;
GLV_menuXY["18ac1b"] = new Array();
GLV_menuXY["18ac1b"]["Menu18ac1b0"] = new Array(0,0,"itemIDdc527ec4af","anchorIDdc527ec4af");
GLV_menuXY["18ac1b"]["Menu18ac1b1"] = new Array(0,0,"itemIDb4e72a9574","anchorIDb4e72a9574");
GLV_menuXY["18ac1b"]["Menu18ac1b2"] = new Array(0,0,"itemIDd47f1fb0ac","anchorIDd47f1fb0ac");
GLV_menuXY["18ac1b"]["Menu18ac1b3"] = new Array(0,0,"itemID4ddb694537","anchorID4ddb694537");
GLV_menuXY["18ac1b"]["Menu18ac1b4"] = new Array(0,0,"itemID2765cd8672","anchorID2765cd8672");
GLV_menuXY["18ac1b"]["Menu18ac1b5"] = new Array(0,0,"itemID9550656f80","anchorID9550656f80");

function GL18ac1b_getMouse(e) {
	if (GLV_menuOn["18ac1b"]!=null && !GLV_dontFollowMouse["18ac1b"]){

	}
	GL_mouseMoveEvaluate("18ac1b");
}
function GL18ac1b_hideCode() {

}
function GL18ac1b_doTop(WMid,id) {

}
function GL18ac1b_restoreMenu() {

}
function GL18ac1b_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "18ac1b";
GLV_timeout_count++;



GLV_curLayerWidth["099af2"]=0;
GLV_curLayerHeight["099af2"]=0;
GLV_curLayerX["099af2"]=0;
GLV_curLayerY["099af2"]=0;
GLV_menuOn["099af2"] = null;
GLV_gap["099af2"]=0;
GLV_currentLayer["099af2"] = null;
GLV_currentROitem["099af2"] = null;
GLV_hasBeenOver["099af2"]=0;
GLV_doReset["099af2"]=false;
GLV_lastKey["099af2"] = "";
GLV_onlyOnLoad["099af2"] = 0;
GLV_dontHideOnMouseUp["099af2"] = 0;
GLV_dontFollowMouse["099af2"] = 0;
GLV_date = new Date();
GLV_timeout["099af2"] = GLV_date.getTime();
GLV_timeoutRef["099af2"] = 0;
GLV_menuXY["099af2"] = new Array();
GLV_menuXY["099af2"]["Menu099af20"] = new Array(0,0,"itemIDa68093a136","anchorIDa68093a136");
GLV_menuXY["099af2"]["Menu099af21"] = new Array(0,0,"itemID9cccda6a14","anchorID9cccda6a14");
GLV_menuXY["099af2"]["Menu099af22"] = new Array(0,0,"itemIDb677053a9c","anchorIDb677053a9c");
GLV_menuXY["099af2"]["Menu099af23"] = new Array(0,0,"itemID7af35d19e9","anchorID7af35d19e9");
GLV_menuXY["099af2"]["Menu099af24"] = new Array(0,0,"itemID43fd756108","anchorID43fd756108");
GLV_menuXY["099af2"]["Menu099af25"] = new Array(0,0,"itemID4426263b1a","anchorID4426263b1a");
GLV_menuXY["099af2"]["Menu099af26"] = new Array(0,0,"itemIDd550e6753b","anchorIDd550e6753b");
GLV_menuXY["099af2"]["Menu099af27"] = new Array(0,0,"itemID98373d6ccf","anchorID98373d6ccf");
GLV_menuXY["099af2"]["Menu099af28"] = new Array(0,0,"itemID7ad88e2208","anchorID7ad88e2208");

function GL099af2_getMouse(e) {
	if (GLV_menuOn["099af2"]!=null && !GLV_dontFollowMouse["099af2"]){

	}
	GL_mouseMoveEvaluate("099af2");
}
function GL099af2_hideCode() {

}
function GL099af2_doTop(WMid,id) {

}
function GL099af2_restoreMenu() {

}
function GL099af2_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "099af2";
GLV_timeout_count++;



GLV_curLayerWidth["1de288"]=0;
GLV_curLayerHeight["1de288"]=0;
GLV_curLayerX["1de288"]=0;
GLV_curLayerY["1de288"]=0;
GLV_menuOn["1de288"] = null;
GLV_gap["1de288"]=0;
GLV_currentLayer["1de288"] = null;
GLV_currentROitem["1de288"] = null;
GLV_hasBeenOver["1de288"]=0;
GLV_doReset["1de288"]=false;
GLV_lastKey["1de288"] = "";
GLV_onlyOnLoad["1de288"] = 0;
GLV_dontHideOnMouseUp["1de288"] = 0;
GLV_dontFollowMouse["1de288"] = 0;
GLV_date = new Date();
GLV_timeout["1de288"] = GLV_date.getTime();
GLV_timeoutRef["1de288"] = 0;
GLV_menuXY["1de288"] = new Array();
GLV_menuXY["1de288"]["Menu1de2880"] = new Array(0,0,"itemIDc49ee8c1bc","anchorIDc49ee8c1bc");
GLV_menuXY["1de288"]["Menu1de2881"] = new Array(0,0,"itemID71d22f1440","anchorID71d22f1440");
GLV_menuXY["1de288"]["Menu1de2882"] = new Array(0,0,"itemID6125f631bc","anchorID6125f631bc");
GLV_menuXY["1de288"]["Menu1de2883"] = new Array(0,0,"itemID074ffb42b6","anchorID074ffb42b6");
GLV_menuXY["1de288"]["Menu1de2884"] = new Array(0,0,"itemIDf70e2c0d1e","anchorIDf70e2c0d1e");
GLV_menuXY["1de288"]["Menu1de2885"] = new Array(0,0,"itemIDc55e37d936","anchorIDc55e37d936");
GLV_menuXY["1de288"]["Menu1de2886"] = new Array(0,0,"itemID551c20b9a8","anchorID551c20b9a8");
GLV_menuXY["1de288"]["Menu1de2887"] = new Array(0,0,"itemIDb61efaff05","anchorIDb61efaff05");

function GL1de288_getMouse(e) {
	if (GLV_menuOn["1de288"]!=null && !GLV_dontFollowMouse["1de288"]){

	}
	GL_mouseMoveEvaluate("1de288");
}
function GL1de288_hideCode() {

}
function GL1de288_doTop(WMid,id) {

}
function GL1de288_restoreMenu() {

}
function GL1de288_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "1de288";
GLV_timeout_count++;



GLV_curLayerWidth["f1b505"]=0;
GLV_curLayerHeight["f1b505"]=0;
GLV_curLayerX["f1b505"]=0;
GLV_curLayerY["f1b505"]=0;
GLV_menuOn["f1b505"] = null;
GLV_gap["f1b505"]=0;
GLV_currentLayer["f1b505"] = null;
GLV_currentROitem["f1b505"] = null;
GLV_hasBeenOver["f1b505"]=0;
GLV_doReset["f1b505"]=false;
GLV_lastKey["f1b505"] = "";
GLV_onlyOnLoad["f1b505"] = 0;
GLV_dontHideOnMouseUp["f1b505"] = 0;
GLV_dontFollowMouse["f1b505"] = 0;
GLV_date = new Date();
GLV_timeout["f1b505"] = GLV_date.getTime();
GLV_timeoutRef["f1b505"] = 0;
GLV_menuXY["f1b505"] = new Array();
GLV_menuXY["f1b505"]["Menuf1b5050"] = new Array(0,0,"itemIDe9fd3ad8fc","anchorIDe9fd3ad8fc");

function GLf1b505_getMouse(e) {
	if (GLV_menuOn["f1b505"]!=null && !GLV_dontFollowMouse["f1b505"]){

	}
	GL_mouseMoveEvaluate("f1b505");
}
function GLf1b505_hideCode() {

}
function GLf1b505_doTop(WMid,id) {

}
function GLf1b505_restoreMenu() {

}
function GLf1b505_resetSubMenus() {
	var resetSubMenu=1;

	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "f1b505";
GLV_timeout_count++;



GLV_curLayerWidth["875e3a"]=0;
GLV_curLayerHeight["875e3a"]=0;
GLV_curLayerX["875e3a"]=0;
GLV_curLayerY["875e3a"]=0;
GLV_menuOn["875e3a"] = null;
GLV_gap["875e3a"]=50;
GLV_currentLayer["875e3a"] = null;
GLV_currentROitem["875e3a"] = null;
GLV_hasBeenOver["875e3a"]=0;
GLV_doReset["875e3a"]=false;
GLV_lastKey["875e3a"] = "Menu875e3a6";
GLV_onlyOnLoad["875e3a"] = 0;
GLV_dontHideOnMouseUp["875e3a"] = 0;
GLV_dontFollowMouse["875e3a"] = 0;
GLV_date = new Date();
GLV_timeout["875e3a"] = GLV_date.getTime();
GLV_timeoutRef["875e3a"] = 70;
GLV_menuXY["875e3a"] = new Array();
GLV_menuXY["875e3a"]["Menu875e3a0"] = new Array(0,0,"itemIDb45d3fa110","anchorIDb45d3fa110");
GLV_menuXY["875e3a"]["Menu875e3a1"] = new Array(0,0,"itemID4eccf57e49","anchorID4eccf57e49");
GLV_menuXY["875e3a"]["Menu875e3a2"] = new Array(0,0,"itemID735c781ca5","anchorID735c781ca5");
GLV_menuXY["875e3a"]["Menu875e3a3"] = new Array(0,0,"itemID94ddf32314","anchorID94ddf32314");
GLV_menuXY["875e3a"]["Menu875e3a4"] = new Array(0,0,"itemID5226452d29","anchorID5226452d29");
GLV_menuXY["875e3a"]["Menu875e3a5"] = new Array(0,0,"itemIDd0dfdc6ea0","anchorIDd0dfdc6ea0");
GLV_menuXY["875e3a"]["Menu875e3a6"] = new Array(0,0,"itemID6aa54cdf37","anchorID6aa54cdf37");

function GL875e3a_getMouse(e) {
	if (GLV_menuOn["875e3a"]!=null && !GLV_dontFollowMouse["875e3a"]){

	}
	GL_mouseMoveEvaluate("875e3a");
}
function GL875e3a_hideCode() {

	GL_getObjCss("Menu875e3a1").visibility = "hidden";
	GL_getObjCss("Menu875e3a2").visibility = "hidden";
	GL_getObjCss("Menu875e3a3").visibility = "hidden";
	GL_getObjCss("Menu875e3a4").visibility = "hidden";
	GL_getObjCss("Menu875e3a5").visibility = "hidden";
	GL_getObjCss("Menu875e3a6").visibility = "hidden";
GL_hideAll("661322");
GL_hideAll("1e6123");
GL_hideAll("18ac1b");
GL_hideAll("099af2");
GL_hideAll("1de288");
GL_hideAll("f1b505");
}
function GL875e3a_doTop(WMid,id) {
var parentObject = GL_getObj(GLV_menuXY[WMid][id][2]);
		var TI_width = parentObject.width;
		var TI_height = parentObject.height;
		var anchorObj = GL_getObj(GLV_menuXY[WMid][id][3]);
		var TI_x = anchorObj.x;
		var TI_y = anchorObj.y;
			
GLV_menuOn["875e3a"].left = (TI_x+0)+"px";
GLV_menuOn["875e3a"].top =  (TI_y+32)+"px";
}
function GL875e3a_restoreMenu() {

GL_restoreMenu("661322");
GL_restoreMenu("1e6123");
GL_restoreMenu("18ac1b");
GL_restoreMenu("099af2");
GL_restoreMenu("1de288");
GL_restoreMenu("f1b505");
}
function GL875e3a_resetSubMenus() {
	var resetSubMenu=1;

if (!GLV_doReset["661322"] && GLV_currentLayer["661322"]!=null)	resetSubMenu=0;
if (!GLV_doReset["1e6123"] && GLV_currentLayer["1e6123"]!=null)	resetSubMenu=0;
if (!GLV_doReset["18ac1b"] && GLV_currentLayer["18ac1b"]!=null)	resetSubMenu=0;
if (!GLV_doReset["099af2"] && GLV_currentLayer["099af2"]!=null)	resetSubMenu=0;
if (!GLV_doReset["1de288"] && GLV_currentLayer["1de288"]!=null)	resetSubMenu=0;
if (!GLV_doReset["f1b505"] && GLV_currentLayer["f1b505"]!=null)	resetSubMenu=0;
	return resetSubMenu;
}

GLV_timeout_pointers[GLV_timeout_count] = "875e3a";
GLV_timeout_count++;

function T3_onmousemoveWrapper(e)	{	GL_getMouse(e);   GL661322_getMouse(e);   GL1e6123_getMouse(e);   GL18ac1b_getMouse(e);   GL099af2_getMouse(e);   GL1de288_getMouse(e);   GLf1b505_getMouse(e);   GL875e3a_getMouse(e);	}
	function T3_onmouseupWrapper(e)	{	GL_mouseUp('661322',e);   GL_mouseUp('1e6123',e);   GL_mouseUp('18ac1b',e);   GL_mouseUp('099af2',e);   GL_mouseUp('1de288',e);   GL_mouseUp('f1b505',e);   GL_mouseUp('875e3a',e);	}
	function T3_onloadWrapper()	{	GL_initLayers();   GL_restoreMenu("661322");   GL_restoreMenu("1e6123");   GL_restoreMenu("18ac1b");   GL_restoreMenu("099af2");   GL_restoreMenu("1de288");   GL_restoreMenu("f1b505");   GL_restoreMenu("875e3a");	}
	document.onmousemove=T3_onmousemoveWrapper;
	document.onmouseup=T3_onmouseupWrapper;
	document.onload=T3_onloadWrapper;