// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function(){

  // we start out with all checkboxes checked and a default list.
  // To remove all checkmarks do this:
  //jQuery("input:checkbox").attr("checked",false); //removed 22-02-2010

  // now remove all checkmarks (from the other boxes)
//  jQuery("input:checkbox").attr("checked",false);
//  jQuery("input:checkbox").trigger('click');

  // click twice to load the wished category. No clue why it needs two clicks
  jQuery("input:checkbox[name='Pressearkiv']").trigger('click');
  jQuery("input:checkbox[name='Pressearkiv']").trigger('click');

  // Now check the wished category so I looks correct
  jQuery("input:checkbox[name='Pressearkiv']").attr("checked",true);


});


