// JavaScript Document
function ManuChange(i)
{
	//alert(i);
	switch(i)
	{
		case 1:
			var id = document.getElementById("LeftColumnNav1_lstManufacture1").value;
			var nom = document.getElementById("LeftColumnNav1_lstManufacture1").options[document.getElementById("LeftColumnNav1_lstManufacture1").selectedIndex].text;
			nom = nom.replace(" ",  "-");
			location.href="http://www.golfio.com/" + nom.toLowerCase() + "-golf-equipment/" + id + ".phtml";
			break;
		case 2:
			var id = document.getElementById("LeftColumnNav1_lstManufacture2").value;
			var nom = document.getElementById("LeftColumnNav1_lstManufacture2").options[document.getElementById("LeftColumnNav1_lstManufacture2").selectedIndex].text;
			nom = nom.replace(" ",  "_");
			location.href="http://www.golfio.com/" + nom.toLowerCase() + "-golf-equipment/" + id + ".phtml";
			break;
		case 3:
			var id = document.getElementById("LeftColumnNav1_lstManufacture3").value;
			var nom = document.getElementById("LeftColumnNav1_lstManufacture3").options[document.getElementById("LeftColumnNav1_lstManufacture3").selectedIndex].text;
			nom = nom.replace(" ",  "_");
			location.href="http://www.golfio.com/" + nom.toLowerCase() + "-golf-equipment/" + id + ".phtml";
			break;
	}
}