$(document).ready(function() {
	// new window for external links
	$("body").delegate("a[href^='http']:not([href*='" + window.location.host + "'])", "click", function(){
            $(this).attr("target", "_blank");
      });
}); 
