// If site is entered via .co.uk domain redirect to .com
// Google maps API only works from scoot-utc.com

url = new String(window.location);
if (url.indexOf('co.uk') != -1)
{
	url = url.replace("scoot-utc.co.uk", "scoot-utc.com");
	window.location = url;
}
