// Größen- und Positionsangaben
var width = 150;
var height = 19;

var pos_1 = 223;
var pos_2 = 301;
var pos_3 = 351;
var pos_4 = 450;
var pos_5 = 536;

var top_1 = 115;
var top_2 = 133;
var top_3 = 152;
var top_4 = 171;
var top_5 = 190;
var top_6 = 209;
var top_7 = 228;
var top_8 = 247;
var top_9 = 266;

// Parameter: Menu, Direction, Left, Top, Width, Height, Parent
var menus = 
[
	new slideOutMenu("menu1", "down", pos_1, top_1, width, height * 2, null),
	new slideOutMenu("menu2", "down", pos_2, top_1, width, height * 3, null),
	new slideOutMenu("menu20", "right", pos_2 + width, top_2, width, height * 5 + 1, "menu2"),
	new slideOutMenu("menu3", "down", pos_3, top_1, width, height * 3, null),
	new slideOutMenu("menu4", "down", pos_4, top_1, width, height * 3, null),
	new slideOutMenu("menu5", "down", pos_5, top_1, width, height * 2, null)
]

document.write("<style type=\"text/css\">" + slideOutMenu.styleMod + "</style>");

for (var i = 0; i < menus.length; i++)
{
	menus[i].onactivate = new Function("document.getElementById('act"+ i +"').className='active';");
	menus[i].ondeactivate = new Function("document.getElementById('act"+ i +"').className='';");
}