
	function Redirect()
	{
		var docURL = document.URL;
		
		if (docURL.lastIndexOf("/") === docURL.length - 1)
		{
			if (docURL.indexOf("houseofcopiers") > -1)
			{
				if (!IsAlreadyRedirected(docURL, "/hoc"))
				{
					this.document.location = document.URL + "hoc/";
				}
			}
			else if (docURL.indexOf("onlinecopiers") > -1)
			{
				if (!IsAlreadyRedirected(docURL, "/london"))
				{
					this.document.location = document.URL + "london/";
				}
			}
			else if (docURL.indexOf("freecopiersforschools") > -1)
			{
				if (!IsAlreadyRedirected(docURL, "/fcfs"))
				{
					this.document.location = document.URL + "fcfs/";
				}
			}
			
			else if (docURL.indexOf("schools") > -1)
			{
				this.document.location = document.URL + "schools/";
			}
			
			else if (docURL.indexOf("matthewsmusicmanagement") > -1)
			{
				this.document.location = document.URL + "mmm/";
			}
				
			else if (docURL.indexOf("hocdigital") > -1)
			{
				document.location = 'http://www.hocdig.com/';

//				if (!IsAlreadyRedirected(docURL, "/hocdigital"))
//				{
//					this.document.location = document.URL + "hocdigital/";
//				}
			}
		}
	}
	
	function IsAlreadyRedirected(docURL,dir)
	{
		return docURL.indexOf(dir) > -1;
	}
