// JavaScript Document
//substitute JS lack of native trim fnc
String.prototype.trim = function () {
    return this.replace(/^\s*/, "").replace(/\s*$/, "");
}

$(document).ready(function(){					
		$('a[rel*=external]').click(function(){
		   window.open(this.getAttribute('href'));
		   return false;
		});
});
