/* Please note that this file depends upon JQuery v 1.3.2 */

$(document).ready(function() {

  $('form#pm_inbox_update input.check_all').change(function(){
    $('form#pm_inbox_update input[name=thread_id]').attr('checked',$(this).attr('checked'));
  });

  $('a#delete_pm_threads').click(function() {
    confirmation = confirm('Are you sure you want to delete the selected messages? This can not be undone!');
    if(confirmation == true){
      $('form#pm_inbox_update input[name=thread_id]').filter(':checked').each(function() {
        $.ajax({
          type: 'GET',
          url: '/delete_pm.php',
          data: {
            id: $(this).val(),
            role: $(this).attr('role')
          }
        });
        $(this).parents('tr').remove();
      });
    }
    else{
      return false;
    }
  });
});
  