﻿// Shows the image with id imgId1, hides imgId2
// wrote by Peder for robot-hosting.com Feb 2006
// comment from Shahin, the smallest rollover ever written
// if it is loaded on the <head> it is not traffic vamire

function hideShowImages(imgId1, imgId2) {
	var img1 = document.getElementById(imgId1);
	var img2 = document.getElementById(imgId2);
	img1.style.display="";
	img2.style.display="none";
	}