//utility functions
function jump(select) {
	var index;
	
	for(index=0; index<select.options.length; index++)
	if(select.options[index].selected)
		{
		if(select.options[index].value!="")
		window.location.href=select.options[index].value;
		break;
	}
}
//write out the flipper
document.write("<form id='switchbox' method='post'>");
document.write("<fieldset>");
document.write("<label id='gl-switch'>");
document.write("<select onchange='jump(this)' name='url'>");
document.write("<option>Select a Restaurant</option>");
document.write("<option>---------------</option>");
document.write("<option value='http://relishrestaurantgroup.com'>Relish</option>");
document.write("<option value='http://savorcateringandevents.com'>Savor Catering</option>");
document.write("<option>---------------</option>");
document.write("<option value='http://bistrocincinnati.com'>The Bistro</option>");
document.write("<option value='http://greenupcafe.com'>Greenup Café</option>");
document.write("<option value='http://chalkfoodwine.com'>Chalk Food + Wine</option>");
document.write("<option value='http://lavomaticcafe.com'>Lavomatic Café</option>");
document.write("<option value='http://mylocal127.com'>Local 127</option>");
document.write("<option value='http://toniconfourth.com'>Tonic on Fourth</option>");
document.write("</select>");
document.write("</label>");
document.write("</fieldset>");
document.write("</form>");

