
	//Use jQuery to Open All External Links in a New Window
	jQuery(document).ready(function($){
	 $("a[href^='http:']:not([href*='" + window.location.host + "']):not([target='_blank'])").live('click', function(){
	  $(this).attr('target','_blank'); 
	 }); 
	});  
