$(document).ready(
function(){
	$('a').click(
		function(){
				if((this.href).match(/https?:\/\//) &&  !(this.href).match(/a-tout-prague/)){
				window.open(this.href);
				return false;
			}
			return true;
		}
	);
	
}
);
