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