// CSS GUI scripts

$(function(){
 $("#documentsIndex a").not(".categoryLink a").click(function(){
   if (document.cookie.indexOf("prAccept=1") == -1) {
    $(this).colorbox(
     {open: true, href: this.href},
     function(){ 
      $("#prSubmitDnd").click(function(){
       setTimeout(function(){$("#modalClose").click();}, 50);
      });
     }
    )
   
    return false;
   } 
 });

})


