// members/controller.js

$(document).ready(function () {

  $("#referralform").submitWithAjax();  
  $("#referralform").submit(function() {
  });

  $("#forgotpasswordform").submitWithAjax();
  $("#forgotpasswordform").submit(function() {
  });
  
  $(".hci_prediction_course").live("click", function() {
    
    $(".hci_prediction_course").removeClass('mouseover').addClass('bgnormal');
    $(this).addClass('mouseover');
    course_id = $(this).attr('course_id');
    $('#prediction_table').html('');
    
    $('#course_tees').load('/courses/fetch_course_tees/' + course_id);
        
    return false;
  });
  
});

