document.write("<form>");
document.write("<select onchange=gotosearch(this)>");
document.write("<option>Home")
document.write("<option>Clave patterns")
document.write("<option>Bell patterns")
document.write("<option>Stick patterns")
document.write("<option>Conga patterns")
document.write("<option selected>Drumset patterns")
document.write("</select>")
document.write("</form>")

function gotoSearch(obj)
	{
	var s;
	s=obj.options[obj.selectedIndex].text
	if (s == "Home"){location.href="index.html";}
	if (s == "Clave patterns"){location.href="1clave.html";}
	if (s == "Bell patterns"){location.href="2bell.html";}
	if (s == "Stick patterns"){location.href="3stick.html";}
	if (s == "Conga patterns"){location.href="4conga.html";}
	if (s == "Drumset patterns"){location.href="5drumset.html";}
	}