$(document).ready(function () {
	$('a').click(function() {
		if (!this.href.match(/\/m\/aa\/?$/)) return true;
		var redirect_url = this.getAttribute('rel');
		if (!redirect_url) redirect_url = 'http://www.affordableagility.com/agilityinbag.htm';
		
		window.open(redirect_url, '_blank');
		document.location.href = this.href;
		return false;
	});
});

