var filter = /\/en\//i;
var lng  = (filter.test(window.location)) ? 'en' : 'ro';
//var url = 'http://toni/www_instronica_ro/' + lng + '/';

if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.right, 0, 0, TransMenu.reference.topRight);
	var menu2 = ms.addMenu(document.getElementById("a2"));
	if (lng == 'en') {	
		menu2.addItem("<a href='en/company/presentation/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>presentation</a>", false);		
		menu2.addItem("<a href='en/company/offer/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>offer</a>", false);		
		menu2.addItem("<a href='en/company/values/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>values</a>", false);		
		menu2.addItem("<a href='en/company/certifications/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>certifications</a>", false);		
	} else {
		menu2.addItem("<a href='ro/companie/prezentare/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>prezentare</a>", false );		
		menu2.addItem("<a href='ro/companie/oferta/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>oferta</a>", false);		
		menu2.addItem("<a href='ro/companie/valori/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>valori</a>", false);		
		menu2.addItem("<a href='ro/companie/certificari/' class='item' style='display:block; width:130px; height:25px; line-height:27px; padding-left:20px; padding-right:10px;'>certificari</a>", false);		
	}
    TransMenu.renderAll();
}