(function ($) {  

Drupal.behaviors.cornerstone = {
  attach: function (context, settings) {
    
    $("a.newwindow", context).click(function (e) {
      // console.log(e);
      // return false;
      window.open($(this).attr('href'));
      e.preventDefault();
    });
    
    // $('#main.resources section ul li a', context).prepend("&raquo; ");
  }

};

})(jQuery);;

