window.addEvent('domready', function(){
	$('search').addEvent('keydown', function(event){
		var ev = new Event(event);
		if(ev.code == 13){
			var eng = false;
			var urlArray = window.location.href.split("/");
			var terArray = $('search').value.split(" ");
			if(urlArray[urlArray.length - 2] == "en" || urlArray[urlArray.length - 1] == "en"){
				eng = true;
			}
			var url = "/buscar.php/";
			for(x = 0; x < terArray.length; x++){
				url += terArray[x].replace("/", "");
				if(x < terArray.length - 1){
					url += "+";
				}
			}
			if(eng == false){
				url += "/";
			}
			//alert(window.location.href.replace(/\/\w*?\.php/, url));
			if(window.location.href.indexOf("/envasado-al-vacio/") == -1){
				if(window.location.href.indexOf(".php") == -1){
					window.location.href = url.replace("/buscar.php/", "buscar.php/");
				}else if(window.location.href.indexOf("buscar.php/") != -1 || window.location.href.indexOf("ver-producto.php/") != -1){
					window.location.href = window.location.href.replace(urlArray[5], $('search').value.replace(" ", "+").replace("/", "")).replace(/\/\d\d*?\//g, "/").replace("ver-producto.php/", "buscar.php/");
					
					/*if(eng == true){
						alert(urlArray[5]);
					}else{
						alert(urlArray[5]);
					}*/
				}else if(window.location.href.indexOf("ver-noticia.php/") != -1){
					
					window.location.href = window.location.href.replace(urlArray[5], $('search').value.replace(" ", "+").replace("/", "")).replace(/\/\d\d*?\//g, "/").replace("ver-noticia.php/", "buscar.php/").replace("/"+urlArray[6], "");
				}else{
					//alert(window.location.href.replace(/\/\w*?\.php/, url));
					window.location.href = window.location.href.replace(/\/\w*?\.php/, url);
				}
			//*******************//
			//Envasado al vacio
			//*******************//
			}else{
				if(window.location.href.indexOf(".php") == -1){
					window.location.href = url.replace("/buscar.php/", "buscar.php/");
				}else if(window.location.href.indexOf("buscar.php/") != -1 || window.location.href.indexOf("ver-producto.php/") != -1){
					window.location.href = window.location.href.replace(urlArray[6], $('search').value.replace(" ", "+").replace("/", "")).replace(/\/\d\d*?\//g, "/").replace("ver-producto.php/", "buscar.php/");
					
					/*if(eng == true){
						alert(urlArray[5]);
					}else{
						alert(urlArray[5]);
					}*/
				}else if(window.location.href.indexOf("ver-noticia.php/") != -1){
					
					window.location.href = window.location.href.replace(urlArray[6], $('search').value.replace(" ", "+").replace("/", "")).replace(/\/\d\d*?\//g, "/").replace("ver-noticia.php/", "buscar.php/").replace("/"+urlArray[7], "");
				}else{
					//alert(window.location.href.replace(/\/\w*?\.php/, url));
					window.location.href = window.location.href.replace(/\/\w*?\.php/, url).replace("/envasado-al-vacio.php", url);
				}
			}
		}
	});
});