window.addEvent("domready", function () 
{
	$$("a[href^=mailto]").each(function (a) 
	{
		var href = a.get("href");
		
		if (href.match(/mailto:(.*)@thestoreroom.co.uk/i))
		{
			var site = RegExp.$1;

			a.addEvent("click", function (e) 
			{
				e.stop();
				window.location.href = "contact_us.htm?" + site;
			});
		}
	});
	
});
