jQuery.noConflict();

jQuery(document).ready(function() {
  jQuery('#alerts div.link-pane a').click(function() {
    jQuery(this).parents('#alerts form').submit();
    return false;
  });
});

