$(document).ready(function() {
 
	$('#wrapper a').filter(function() {
	    return this.hostname && this.hostname !== location.hostname && this.hostname !== 'pfizer.co.uk' && this.hostname !== 'eisai.co.uk' && this.hostname !== 'pfizer.com' && this.hostname !== 'eisai.com' && this.hostname !== 'www.pfizer.co.uk' && this.hostname !== 'www.eisai.co.uk' && this.hostname !== 'www.pfizer.com' && this.hostname !== 'www.eisai.com';
	})
	.click(function (e) {
		e.preventDefault();
		$("#overlay").fadeIn(100,function(){			
			$(".disclaimer").fadeIn(100);
			window.scrollTo(0,0);

		});
		
		var link = $(this).attr("href");
		$("#extLink").attr("href",link);
		$("#extLink").click(function(e){
			recognition.popup.close();
		});
	});
});