$(document).ready( function() {

	$("ul#footer a").click( function() {
		if (this.className.indexOf("contact-email") != -1) {
			return true;
		}
		window.open($(this).attr("href"));
		return false;
	});

	$("ul#footer a.contact-email").attr("href","mailto:style-attract-play@airlock.com");
	$("ul#footer a.contact-email").text("editor@style-attract-play.co.uk");

});