//Arrays 1.ID: MenuID; 2.ID: LevelID
/*
mParams:
mParams[MenuID] = 'paramlist';

paramlist:
Menu Type | load first Page (type 0 & 1) | leave Category opened (type 0 only) | Cat closeable (type 0 only) | Menu is expanded (type 0 only) 

Menu Types:
0: Single (Explorer) Tree
1: Multi-Part (magix/esirion/staedtler/bulthaup/bulthaup partner)
*/ 

mParams = new Array();
mParams[0] = '1|0|0|0|0';


/*
mOutput:
mOutput[MenuID][Level] = 'TargetFrame~~TargetDIV';
*/

mOutput = new Array();
mOutput[0] = new Array();  //Menu-Tree
mOutput[0][0] = 'fMainnav~~m0';
mOutput[0][1] = 'fMainnav~~m1';
mOutput[0][2] = 'fMainnav~~m2';

// Menu-Templates
mTemplateStart = new Array();
mTemplateLine = new Array();
mTemplateEnd = new Array();

// Menu-Templates Menu Mainnav
mTemplateStart[0] = new Array();
mTemplateLine[0] = new Array();
mTemplateEnd[0] = new Array();

mTemplateStart[0][0] = '<TABLE CELLPADDING=1 CELLSPACING=0 BORDER=0 WIDTH=150>';
mTemplateStart[0][1] = '<TABLE CELLPADDING=1 CELLSPACING=0 BORDER=0 WIDTH=130>';
mTemplateStart[0][2] = '<TABLE CELLPADDING=1 CELLSPACING=0 BORDER=0 WIDTH=150>';

for(var i=0;i<3;i++) {
	mTemplateLine[0][i] = '<TR><TD CLASS="<entry-class>">&nbsp;&nbsp;</TD><TD CLASS="<entry-class>"><A HREF="javascript:parent.entryclick(<entry-id>)" CLASS="<entry-class>"><entry-label></A></TD></TR>\n';
	mTemplateEnd[0][i] = '</TABLE>\n';
}
