jQuery(function () {
	jQuery('a[href^=http]').click(function () {
		window.open(jQuery(this).attr('href'));
		return false;
	});
});
