function setMenu(tm,sm)
{
	if(sm != 0)
	{
		var tMenu = document.getElementById('tmid_'+tm);
		var sMenu = document.getElementById('smid_'+sm);

		var submenu = document.getElementById('submenu');
		var submenuHolder = document.getElementById('SubmenuHolder');
		var menuArrow = document.getElementById('MenuArrow');

		var subLoc = submenu.offsetLeft;
		var tMenuLoc = tMenu.offsetLeft;
		var buffer = (tMenuLoc - subLoc);
		var cellW = (tMenu.offsetWidth) - 10;

		sMenu.style.width = cellW+"px";
		menuArrow.style.width = (cellW)+"px";
		submenuHolder.style.paddingLeft = buffer+"px";
		submenu.style.backgroundPosition = cellW+"px 0px";

		/* bottom Menu Items */

		var ttMenu = document.getElementById('stmid_'+tm);
		//var ssMenu = document.getElementById('ssmid_'+sm);

		var bottomMenu = document.getElementById('bottomsubmenu');
		//var bottomSubMenuHolder = document.getElementById('bottomSubmenuHolder');
		//var bottomMenuArrow = document.getElementById('bottomMenuArrow');

		//ssMenu.style.width = cellW+"px";
		//bottomMenuArrow.style.width = (cellW)+"px";
		//bottomSubMenuHolder.style.paddingLeft = (buffer - 1)+"px";
		//bottomMenu.style.backgroundPosition = cellW+"px 0px";
	}

}

function setMenuIE(tm,sm)
{
	var tMenu = document.getElementById('tmid_'+tm);
	var sMenu = document.getElementById('smid_'+sm);
	/* bottom Menu Items */
	var bottom_sMenu = document.getElementById('ssmid_'+sm);

	var submenu = document.getElementById('submenu');
	var submenuHolder = document.getElementById('SubmenuHolder');
	var menuArrow = document.getElementById('MenuArrow');
	var bottomMenuArrow = document.getElementById('bottomMenuArrow');

	/* bottom menu */
	var bottomMenu = document.getElementById('bottomsubmenu');
	var bottomSubMenuHolder = document.getElementById('bottomSubmenuHolder');

	var subLoc = submenu.offsetLeft;

	var tMenuLoc = tMenu.offsetLeft;

	//alert(subLoc - tMenuLoc);

	var buffer = (118);
	var buffer = (tMenuLoc - subLoc);

	var cellW = (tMenu.offsetWidth) - 20;
	var cellWB = tMenu.offsetWidth - 10;
	//alert(cellW);
	sMenu.style.width = (cellW + 10)+"px";
//	bottom_sMenu.style.width = (cellW + 10)+"px";
	menuArrow.style.width = (cellWB)+"px";
//	bottomMenuArrow.style.width = (cellW - 10)+"px";


	submenuHolder.style.paddingLeft = buffer+"px";
	//bottomMenu.style.paddingLeft = buffer+"px";

	submenu.style.backgroundPosition = cellW+"px 0px";
	//bottomSubMenuHolder.style.paddingLeft = 0+"px";
	var ttMenu = document.getElementById('stmid_'+tm);
	var ssMenu = document.getElementById('ssmid_'+sm);

	var bottomMenu = document.getElementById('bottomsubmenu');
	//var bottomSubMenuHolder = document.getElementById('bottomSubmenuHolder');
	//var bottomMenuArrow = document.getElementById('bottomMenuArrow');


	//ssMenu.style.width = cellWB+"px";
	//bottomMenuArrow.style.width = (cellWB)+"px";
	//bottomSubMenuHolder.style.paddingLeft = (buffer - 1)+"px";
	//bottomMenu.style.backgroundPosition = cellWB+"px 0px";

}