$(document).ready(function(){$("#browse_supplier").bind("change",function(){SetOption("s");});$("#browse_cat").bind("change",function(){SetOption("c");});$("#browse_prod").bind("change",function(){SetOption("p");});});function SetOption(opt){var tag;var tag_number;switch(opt){case"s":$("#browse_supplier option:selected").each(function(){tag=$(this).text();});url="/showcase/"+tag;break;case"c":$("#browse_cat option:selected").each(function(){tag=$(this).text();tag_number=$(this).attr("value");});url='/industry_directory/'+tag+'?tag='+tag_number;break;case"p":$("#browse_prod option:selected").each(function(){tag=$(this).text();});url="/products_services/"+tag;break;}
document.location=url;}
