////
//// javascript code for MIT Medical Wellness page
//// note - this is a subset of the code for the home page
////

//
// this is almost entirely based on jQuery
// required:
//   jquery.js (version 1.2.6+)
//

$(document).ready(function(){

  //
  // service/topic jump menu
  //
  var servicetopicjump = function(e) {
    //alert("servicetopicjump: which = "+e.which);
    location.href = $("#servicetopic").val();
    return false;
  }
  // jump on click of button
  $("#goservicetopic").click(servicetopicjump);
  // jump on Enter key
  $("#goservicetopic").keypress(function(e) {if(e.which == 13){return servicetopicjump(e);}});

});
