//Combo mundo



var textos = new Array();

var valores = new Array();



textos[textos.length] = "Select...";

textos[textos.length] = "Subscribe to Saramall.com.ar";

textos[textos.length] = "Search products";

textos[textos.length] = "Order Calzuro";

textos[textos.length] = "View site map";



valores[valores.length] = ".";

valores[valores.length] = "subscribe.html";

valores[valores.length] = "products.html";

valores[valores.length] = "products/bihos/pedido.html";

valores[valores.length] = "map.html";





function carga_grupo() {	

	for (i=0; i<textos.length; i++)

    { opt(valores[i],textos[i]); }

}



function opt(href,text) {

   	document.write('<OPTION VALUE="',href,'">',text,'<\/OPTION>');

}







function cambio1(object)

{

	var current = object.grupo.selectedIndex;

	object.grupo.options[current].value;

	location.href = object.grupo.options[current].value;

}


