/* Tigra Menu template structure */
/* Added locgic for different screen sizes */
var menuwidth
var menuleft
var menuheight
var submenuheight
var submenuwidth
var subsubmenuwidth

menuwidth = 90;
menuleft = 466;
menuheight = 20;
submenuheight = 35;
submenuwidth = 90;
subsubmenuwidth = 90;

if (screen.width==1280)
{
menuwidth = 90;
menuleft = 587;
menuheight = 20;
submenuheight = 35;
submenuwidth = 90;
subsubmenuwidth = 90;
}


if (screen.width==1152)
{
menuwidth = 90;
menuleft = 463;
menuheight = 20;
submenuheight = 35;
submenuwidth = 90;
subsubmenuwidth = 90;
}
if (screen.width==1024)
{
menuwidth = 90;
menuleft = 340;
menuheight = 20;
submenuheight = 35;
submenuwidth = 90;
subsubmenuwidth = 90;
}

if (screen.width==800)
{
menuwidth = 90;
menuleft = 220;
menuheight = 20;
submenuheight = 35;
submenuwidth = 90;
subsubmenuwidth = 90;
}
var MENU_TPL_SUP = [
	{
		'width': menuwidth,
		'height': menuheight,
		'left': menuwidth,
		'top': 0,
		'hide_delay': 400,
		'expd_delay': 400,
		'css': {
			'inner': 'TM0i0sup',
			'outer': ['TM0o0sup','TM0o1sup']
		},
		'block_left': menuleft,
		'block_top': 0
	},
	{
		'width': submenuwidth,
		'height': submenuheight,
		'block_left': 0,
		'block_top': menuheight,
		'left': 0,
		'top': submenuheight,
		'css': {
			'inner': 'TM0i0sup',
			'outer': ['TM1o0sup','TM1o1sup']
		}
	},
	{
		'width': subsubmenuwidth,
		'block_left': 200,
		'block_top': 0
	}
];
