if (TransMenu.isSupported()){
var offset_left = -4;
if (JS_LANG == 2)
	offset_left = -16;
if (JS_LANG == 3)
	offset_left = -16;

var ms = new TransMenuSet(TransMenu.direction.down, offset_left, -32, TransMenu.reference.bottomLeft);
	var menu = new Array();
	switch (Number(JS_LANG)) {
		case 1: 
			menu[1] = ms.addMenu(document.getElementById('menuitem1'));
			menu[1].addItem('Cocinas','/Productos.asp?r=2&l='+JS_LANG);
			menu[1].addItem('Placards','/Productos.asp?r=1&l='+JS_LANG);
			menu[1].addItem('Piletas','/Productos.asp?r=4&l='+JS_LANG);
			menu[1].addItem('Mesadas','/Productos.asp?r=5&l='+JS_LANG);
			break;
		case 2:
			menu[1] = ms.addMenu(document.getElementById('menuitem1'));
			menu[1].addItem('Kitchens','/Productos.asp?r=2&l='+JS_LANG);
			menu[1].addItem('Placards','/Productos.asp?r=1&l='+JS_LANG);
			menu[1].addItem('Sinks','/Productos.asp?r=4&l='+JS_LANG);
			menu[1].addItem('Countertops','/Productos.asp?r=5&l='+JS_LANG);
			break;
		case 3:
			menu[1] = ms.addMenu(document.getElementById('menuitem1'));
			menu[1].addItem('Cuisines','/Productos.asp?r=2&l='+JS_LANG);
			menu[1].addItem('Rangement','/Productos.asp?r=1&l='+JS_LANG);
			menu[1].addItem('Eviers','/Productos.asp?r=4&l='+JS_LANG);
			menu[1].addItem('Comptoirs','/Productos.asp?r=5&l='+JS_LANG);
			break;
	}
		
TransMenu.renderAll();}