/*
* All content in this page is developed by Ahmed Nasym and/or Ahmed Salam for MTCC Plc
* unless otherwise stated explicitly, content adapted from other
* developers and authors are explicitly referenced.
*/

// This script will load a DHTML menu
// This script may not be copied, modified and used for any purposes
// This meny is adapted from the well known Tigra Menu
// Developed by Ahmed Nasym. All rights reserved 2004.

/*
--- menu level scope settings structure --- 
*/

var MENU_POS = [
{
// item sizes
'height': 22,//height of items in the root menu
'width': 105, //widhth of the items in the root menu

// menu block offset from the origin:
//for root level origin is upper left corner of the page
//for other levels origin is upper left corner of parent item

'block_top': 0, //offset of root menu from the top
'block_left': 10, //offset of root menu from the left edge

// offsets between items of the same level
'top': 0, //offset of items in the root menu relative to each other
'left': 100, //offset to the left of each item except the first one in the root menu

// time in milliseconds before menu is hidden after cursor has gone out
// of any items
'hide_delay': 200,
'expd_delay': 200,
'css' : {
'outer': ['m0l0oout', 'm0l0oover'],
'inner': ['m0l0iout', 'm0l0iover']
}
},
{
'height': 22, //height of an item in all other levels 
'width': 170, //width of an item in all other levels 
'block_top': 22, //offset of second level item from top relative to parent
'block_left': 0, //offset of second level item from left relative to parent
'top': 21, //space between items of all levels
'left': 0, //offset from left of an item relative to each other
'css': {
'outer' : ['m0l1oout', 'm0l1oover'],
'inner' : ['m0l1iout', 'm0l1iover']
}
},
{
'block_top': 0, //offset of third level items from top relative to the second level item
'block_left': 169,
'css': {
'outer': ['m0l2oout', 'm0l2oover'],
'inner': ['m0l1iout', 'm0l2iover']
}
}
]