// JavaScript Document


$(document).ready(function() {
	//External Link Handling
	$("a[href^=http]").click(function(event){
		if(this.href.indexOf(location.hostname) == -1) {
	   $(this).attr('target','_blank');
		}
   });


});