<!--

if (document.images) {
	var thesources = new Array("fab", "paintshop", "airbag", "oil");
	var theimages = new Array ();
	for (tempval in thesources) {
		theimages[tempval] = new Image();
		theimages[tempval].src = 'uploads/images/sitemap/'+thesources[tempval]+'-on.gif';
	}
}
function switchimage(imgName,highlight) {
	if (document.images){
		var imgOn = document.images[imgName];
		if (highlight){
			imgOn.src = 'uploads/images/sitemap/'+imgName+'-on.gif';
		}
		else {
			imgOn.src = 'uploads/images/sitemap/'+imgName+'.gif';
		}
	}
}
function switchbottomimage(imgName,imgNew) {
	if (document.images){
		var imgOn = document.images[imgName];
		imgOn.src = imgNew;
	}
}

//-->

