function menu1_change(){
	var ddl = document.getElementById("menu1");
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	switch(ddl.value)
	{
	case "1":
	    if (sPage == "default.htm" || sPage == "" || !sPage) {
			window.location = "http://www.technique.co.uk/" + sPage.toString();
		}
		else {
			if (sPage.indexOf("news") != -1) {
				window.location = "http://www.technique.co.uk/" + sPage.toString();
			}
			else {
				window.location = "http://www.technique.co.uk/EN/" + sPage.toString();
			}
		}
		break
	case "2":
	  window.location = "http://www.technique.co.uk/ES/" +  sPage.toString();
	  break
	case "3":
	  window.location = "http://www.technique.co.uk/FR/" + sPage.toString();
	  break
	default:
	    if (sPage == "default.htm" || sPage == "" || !sPage) {
			window.location = "http://www.technique.co.uk/" + sPage.toString();
		}
		else {
			if (sPage.indexOf("news") != -1) {
				window.location = "http://www.technique.co.uk/" + sPage.toString();
			}
			else {
				window.location = "http://www.technique.co.uk/EN/" + sPage.toString();
			}
		}
		break
	}
}
