jQuery.noConflict()
jQuery(document).ready(function() {
  
	updateForumAlerts();

});

function updateForumAlerts() {
  jQuery('input.forum_alert_prefs').click(function(e) {
    jQuery.post(this.form.action, jQuery(this.form).serialize(), null, "script");   
  });
  
}