/* Tigra Menu template structure */
/* Added locgic for different screen sizes */
var menuwidth
var menuleft
var menuheight
var submenuheight
var submenuwidth
var subsubmenuwidth
var menutop
menutop = 140;
menuwidth = 161;
menuleft = 117;
menuheight = 30;
submenuheight = 40;
submenuwidth = 220;
subsubmenuwidth = 300;

if (screen.width>=1280)
{
menutop = 120;
menuwidth = 168;
menuleft = 117;
menuheight = 30;
submenuheight = 40;
submenuwidth = 220;
subsubmenuwidth = 300;
}


if (screen.width==1152)
{
menutop = 130;
menuwidth = 151;
menuleft = 97;
menuheight = 30;
submenuheight = 40;
submenuwidth = 220;
subsubmenuwidth = 300;
}
if (screen.width==1024)
{
menutop = 125;
menuwidth = 128;
menuleft = 90;
menuheight = 30;
submenuheight = 30;
submenuwidth = 220;
subsubmenuwidth = 280;
}

if (screen.width==800)
{
menutop = 110;
menuwidth = 120;
menuleft = 20;
menuheight = 60;
submenuheight = 30;
submenuwidth = 220;
subsubmenuwidth = 280;
}
var MENU_TPL = [
	{
		'width': menuwidth,
		'height': menuheight,
		'left': menuwidth,
		'top': 0,
		'hide_delay': 400,
		'expd_delay': 400,
		'css': {
			'inner': 'TM0i0',
			'outer': ['TM0o0','TM0o1']
		},
		'block_left': menuleft,
		'block_top': menutop
	},
	{
		'width': submenuwidth,
		'height': submenuheight,
		'block_left': 0,
		'block_top': menuheight,
		'left': 0,
		'top': submenuheight,
		'css': {
			'inner': 'TM0i0',
			'outer': ['TM1o0','TM1o1']
		}
	},
	{
		'width': subsubmenuwidth,
		'block_left': 200,
		'block_top': 0
	}
];
