var the_url = document.URL;
var domain_start = the_url.indexOf("//") + 2;
var without_resource = the_url.substring(domain_start, the_url.length);
var next_slash = without_resource.indexOf("/");

var tail = without_resource.substring(next_slash, the_url.length);
tail = without_resource.substring(next_slash, the_url.length);
if (tail.substring(0, 11).toLowerCase() == "/nurseries/") {
	tail = tail.substring(10, the_url.length);
}
rExp = /.html/gi;
tail = tail.replace(rExp, ".asp")
rExp = /.htm/gi;
tail = tail.replace(rExp, ".asp")

var redir = "http://www.asquithnurseries.co.uk" + tail;

//alert("redir = " + redir + "\n" + "tail = " + tail + "\n");
window.location = redir;