var Items = [
	[
		["Where do you want to go?", ""],
		["Donde desea saltar?", ""]
	],
	[
		["Learn about the services we provide.", "solutions.html"],
		["Inicio", "home_s.html"]
	],
	[
		["Learn about projects we have worked on.", "casestudies.html"],
		["Aprenda sobre nuestros proyectos.", "casestudies.html"]
	],
	[
		["See our client list.", "clients.html"],
		["Vea lista de nuestros clientes.", "clients.html"]
	],
	[
		["Contact Us.", "contact.html"],
		["Contactenos.", "contact_s.html"]
	]
];


function Jump(language) {
	if (document.all) {
		var index = document.all["JumperForm" + language].elements[0].selectedIndex;
		if (index > 0)
			location.href = Items[index][language][1];
	} else {
		var index = document.forms["JumperForm" + language].elements[0].selectedIndex;
		if (index > 0)
			location.href = Items[index][language][1];
	}
}

function DropDown(language) {
	language = (language == 'sp') ? 1 : 0;
	var str = '<form name=JumperForm' + language + '><select onchange="Jump(' + language + ')">';
	for (var i in Items) { str += '<option>' + Items[i][language][0] + '</option>' }
	str += '</select></form>';
	return str;
}