// Parameter: Menu, Direction, Left, Top, Width, Height, Parent
var width = 131;
var height = 19;

var pos_1 = 223;
var pos_2 = 298;
var pos_3 = 370;
var pos_4 = 468;
var pos_5 = 544;
var pos_6 = 619;

var top_1 = 110;
var top_2 = 128;
var top_3 = 147;
var top_4 = 166;
var top_5 = 185;
var top_6 = 204;
var top_7 = 223;
var top_8 = 242;
var top_9 = 261;


var menus = 
[
	new slideOutMenu("menu1", "down", pos_1, top_1, width, height * 2, null),
	new slideOutMenu("menu10", "right", pos_1 + width, top_1, width, height * 2 + 0, "menu1"),
	new slideOutMenu("menu11", "right", pos_1 + width, top_2, width, height * 2 + 1, "menu1"),
	new slideOutMenu("menu2", "down", pos_2, top_1, width, height * 3, null),
	new slideOutMenu("menu20", "right", pos_2 + width, top_2, width, height * 2 + 1, "menu2"),
	new slideOutMenu("menu3", "down", pos_3, top_1, width, height * 3, null),
	new slideOutMenu("menu4", "down", pos_4, top_1, width, height * 2, null),
	new slideOutMenu("menu5", "down", pos_5, top_1, width, height * 1, null),
	new slideOutMenu("menu6", "down", pos_6, top_1, width, height * 5, 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 = '';");
}
