/* make sure no jquery conflicts */
var $j = jQuery.noConflict();

/* Installer Story selector click handler */
$j(document).ready(function(){
  $j(".select-story").click(function() {
    var form = $j(this).parent();
    var url = $j("select", form).val();
    if(url) {
      window.location = url;
    }
    return false;
  });
});


/* don't think this is used anymore */
function MM_jumpMenu(selObj,restore,newWindow) {
  var s = selObj.options[selObj.selectedIndex].value;
  if(s && s != "") {
    if(newWindow) {
      window.open(s);
    }
    else {
      parent.location.href = s;
    }
  }
  if (restore) selObj.selectedIndex=0;
}
