<!--
if (document.images)
{
	Gloveson = new Image();
	Gloveson.src = "images/biker-parts.gif";
	Glovesoff = new Image();
	Glovesoff.src = "images/motorcycle-clothing.gif";

	Jacketson = new Image();
	Jacketson.src = "images/clothing-motorcycle.gif";
	Jacketsoff = new Image();
	Jacketsoff.src = "images/motorcycle-helmets.gif";

	Trouserson = new Image();
	Trouserson.src = "images/helmets-motorcycle.gif";
	Trousersoff = new Image();
	Trousersoff.src = "images/motorcycle-accessories.gif";

	Suitson = new Image();
	Suitson.src = "images/accessories-motorcycle.gif";
	Suitsoff = new Image();
	Suitsoff.src = "images/biker-leathers.gif";

	Bootson = new Image();
	Bootson.src = "images/leathers-biker.gif";
	Bootsoff = new Image();
	Bootsoff.src = "images/motorcycle-boots.gif";

	Helmetson = new Image();
	Helmetson.src = "images/parts-motorcycle.gif";
	Helmetsoff = new Image();
	Helmetsoff.src = "images/biker-clothing.gif";

	Luggageon = new Image();
	Luggageon.src = "images/clothing-biker.gif";
	Luggageoff = new Image();
	Luggageoff.src = "images/biker-helmets.gif";

	Securityon = new Image();
	Securityon.src = "images/helmets-biker.gif";
	Securityoff = new Image();
	Securityoff.src = "images/biker-accessories.gif";

	Otheron = new Image();
	Otheron.src = "images/Other-motorbike-accessories.gif";
	Otheroff = new Image();
	Otheroff.src = "images/Other-motorcycle-accessories.gif";

	Bikeson = new Image();
	Bikeson.src = "images/accessories-biker.gif";
	Bikesoff = new Image();
	Bikesoff.src = "images/motorcycle-leathers.gif";

	Partson = new Image();
	Partson.src = "images/Motorbike-Parts.gif";
	Partsoff = new Image();
	Partsoff.src = "images/Motorcycle-Parts.gif";

}

function imgOn(imgName)
{
	if (document.images)
	{
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName)
{
	if (document.images)
	{
		document[imgName].src = eval(imgName + "off.src");
	}
}

var browserName = navigator.appName;
var browserVersion = parseInt ( navigator.appVersion);
function bookmarksite(title,url){
	if ( browserName == "Microsoft Internet Explorer" && browserVersion >= 4 ) {
		window.external.AddFavorite(url, title);
	}
	else {
		alert("Press CTRL-D to bookmark this page");
	}
}

//-->