//TBS Jquery Functions
jQuery(function ($)  {    

//Blank Target
	 
	 $("a").filter(function() {
	 return this.hostname && this.hostname !== location.hostname;
	 }).attr('target', '_blank');
	 
});




	
