﻿var randomNum = 1

function go_to() {
			if (randomNum==0) window.location.href="http://www.pilotshop.com";
			if (randomNum==1) window.location.href="http://www.pilotshop.com";
			if (randomNum==2) window.location.href="http://www.pilotshop.com";
}

var myPix = new Array("pilotshop.gif","pilotshop2.gif","pilotshop3.gif")

	function choosePic() {
		if (document.images) {
			randomNum = Math.floor(Math.random()*3);
			document.banner.src = "http://www.swaviator.com/images/banners/"+myPix[randomNum];
			window.setTimeout('choosePic();',10000);		
		}
	}
