// JavaScript Document

jQuery(document).ready( function () {
	jQuery('a[@href^="http"]').not('[@href^="127.0.0.1"]').not('[@href^="127.0.0.1"]').click(function(){
	window.open(this.href, '');
	return false;
	});
});

jQuery(document).ready( function () {
	jQuery('a[@href^="https"]').not('[@href^="127.0.0.1"]').not('[@href^="127.0.0.1"]').click(function(){
	window.open(this.href, '');
	return false;
	});
});

