function wrap_root (text)
{
/*normal, hover, click*/
return ['
',
'',
''
];
}
function wrap_parent (text, icon, hovericon)
{
/*normal, hover, click*/
return [['' + text + '
'].join(''),
['' + text + '
'].join(''),
['' + text + '
'].join('')
];
}
function wrap_child (text, icon, hovericon)
{
/*normal, hover, click*/
return [['' + text + '
'].join(''),
['' + text + '
'].join(''),
['' + text + '
'].join('')
];
}
var MENU_POS =[
// Level 0 block configuration
{
// Item's height in pixels
'height' : 34,
// Item's width in pixels
'width' : 100,
// if Block Orientation is vertical
'vertical' : false,
// Time Delay in milliseconds before subling block expands
// after mouse pointer overs an item
'expd_delay' : 0,
// Style class names for the level
'css':
{
// Block outing table class
'table' : '',
// Item outer tag style class for all item states or
// classes for [, , ]
'outer' : '',
// Item inner tag style class for all item states or
// classes for [, , ]
'inner' : ''
}
},
// Level 1 block configuration
{
'width' : 100,
'height' : 22,
// Vertical Offset between adjacent levels in pixels
'block_top' : 33,
// Horizontal Offset between adjacent levels in pixels
'block_left' : 0,
// block behaviour if single frame:
// 1 - shift to the edge, 2 - flip relatively to left upper corner
'wise_pos' : 1,
'vertical' : true,
// transition effects for the block
// [index on expand, duration on expand, index on collapse, duration on collapse]
'transition' : [0, 0.3, 0, 0.3],
// Time Delay in milliseconds before menu collapses after mouse
// pointer lefts all items
'hide_delay' : 300,
'css' :
{
'table' : 'outer',
'outer' : '',
'inner' : ''
}
},
// Level 2 block configuration
{
'block_top' : 0,
'block_left' : 100
}
//Subling level configurations are inherited from level 2
]
var MENU_ITEMS = [[wrap_root('Bars'), 'http://www.charlestonbars.com/Bars', {'sw': 80},[wrap_parent('Charleston', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/Charleston', {}],[wrap_parent('Mount Pleasant', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/MountPleasant', {}],[wrap_parent('Sullivans Island', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/SullivansIsland', {}],[wrap_parent('Isle of Palms', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/IsleofPalms', {}],[wrap_parent('West Ashley', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/WestAshley', {}],[wrap_child('James Island', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/JamesIsland', {}],[wrap_child('Folly Beach', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/FollyBeach', {}]],[wrap_root('Forum'), 'http://www.charlestonbars.com/forum/', {'sw': 80}],[wrap_root('Photos'), 'http://www.charlestonbars.com/photos', {}],[wrap_root('Videos'), 'http://www.charlestonbars.com/videos', {}],[wrap_root('Contact'), 'http://www.charlestonbars.com/forum/sendmessage.php', {'sw': 70}],[wrap_root('Members'), 'http://www.charlestonbars.com/Members', {},[wrap_child('Register', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16', 'http://www.charlestonbars.com/includes/javascript/hovermenu/pixel.gif width=16'), 'http://www.charlestonbars.com/forum/register.php', {}]],[wrap_root('Home'), 'http://www.charlestonbars.com/', {'sw': 65}]];
new menu (MENU_ITEMS, MENU_POS);