<!-- START NPR MODULES LOCALIZATION CODE -->

window.station="KUWR_FM";
window.localize=true;

<!-- END NPR MODULES LOCALIZATION CODE -->




function navbar_goto_page (formid) {
  var newURL = formid.destination.options[formid.destination.selectedIndex].value
  if (newURL != "") {
    if (newURL == "-" ) {
	resetMenu();	
    } else {  
   	location.href = newURL;
    }
  }
  return false;
}

sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);