var wotPage
function goThere(formObj){
wotPage = formObj.options[formObj.options.selectedIndex].value;
if(wotPage != "empty"){
location.href = wotPage;
wotPage = "";
}
}

var separator=" ; ";
function splitString(stringToSplit,separator) {
arrayOfStrings = stringToSplit.split(separator)
return arrayOfStrings;
}

var joeMenuArray=new Array("JB Solo","X Brothers","JB &amp; Friends","Blue Coupe","Joe/Patty G","BDS");

function jumpMenuWriter(wotMenu){
if (wotMenu=="gigs"){
var menu01='<form>';
menu01+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu01+='<option value="../index.htm">Gig Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="JB Solo"){menu01+='<option value="../jbsolo/gigs.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu01+='<option value="../xbros/gigs.htm">'+theChoice+'';}
else if (theChoice=="JB &amp; Friends"){menu01+='<option value="../jbf/gigs.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu01+='<option value="../bluecoupe/gigs.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu01+='<option value="../jbpg/gigs.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu01+='<option value="../bds/gigs.htm">'+theChoice+'';}
else{menu01+='<option value="../index.htm">Home';}
}
menu01+='<'+'/select>';
document.write(menu01);
}
else{
var menu02='<form class="bocmenu">';
menu02+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu02+='<option value="../index.htm">Set Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="JB Solo"){menu02+='<option value="../jbsolo/setlists.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu02+='<option value="../xbros/setlists.htm">'+theChoice+'';}
else if (theChoice=="JB &amp; Friends"){menu02+='<option value="../jbf/setlists.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu02+='<option value="../bluecoupe/setlists.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu02+='<option value="../jbpg/setlists.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu02+='<option value="../bds/setlists.htm">'+theChoice+'';}
else{menu02+='<option value="../index.htm">Home';}
}
menu02+='<'+'/select>';
document.write(menu02);
}
}
