(function ($) {

  Drupal.behaviors.ss = {
    attach: function (context, settings) {
      $("a.newwindow", context).click(function (e) {
        // console.log(e);
        // return false;
        window.open($(this).attr('href'));
        e.preventDefault();
      });
      
      if ($(".static-wrapper .buttons").children().length < 2){
        $(".static-wrapper .buttons").css("height", "2");
      };
      
      $("#main .field-name-body p:first").addClass("first");
      
      $(".page-node-3 #main h1").html("Building schools<br />in the spirit<br /> of reconciliation")
      $(".page-node-7 #main h1").html("Current Projects<br /> in South Sudan");
      $(".page-node-54 h3.sbH3").html("From Education...<br />Comes Peace");
      
      $("#block-webform-client-block-123 h2").html("Subscribe to receive our<br />e-newsletter");
      
      if (Drupal.behaviors.initColorbox){
        $("a.vid-overlay.special").colorbox({
          iframe:true,
          innerWidth:425,
          innerHeight:344
        });
      }
    }
  };

})(jQuery);;

