

<!--------------- jQuery Page Load Actions --------------->

$(document).ready(function() {
	
<!-- External Website -->
	$('a[href^="http://"]')
	  .attr({
	    target: "_blank",
	    title: "This link directs you to an external website"
	  });
});

