//<!--

function newImage(arg) 
{
		rslt = new Image();
		rslt.src = arg;
		return rslt;
}

function preloadImages() 
{

		img_1 = newImage("b-home-over");
		img_2 = newImage("b-formal-wear-over.gif");
		img_3 = newImage("b-highland-wear-over.gif");
		img_4 = newImage("b-about-us-over.gif");
		img_5 = newImage("b-contact-us-over.gif");
}

function changeImages(imageName, newImageSrc) 
{
	if (document.images) 
	{				
		document[imageName].src = newImageSrc;	
	}
}

function writeEmail()
{      	   
	var body="Hi T.C. Chesterfield,";

	/* Notice this is URL encoding like a query string */
	self.location="mailto:info@tc-chesterfield.co.uk?&body="+body;
}				



// -->