new jQuery(document).ready(function(){
	new jQuery('a').each(function(){
		var t = new jQuery(this);
		if (t.attr('href').startsWith('http://')){
			t.click(function(){
				var l = new jQuery(this);
				window.open(l.attr('href'));
				return false;
			});
		}
	});
});

String.prototype.endsWith = function(str)
{ return (this.match(str + "$") == str) }

String.prototype.startsWith = function(str)
{ return (this.match("^" + str) == str) }
