<!--
function randadd0()
{
//create an array of add images
 var i = new Array(new Image(134,134), new Image(134,134), new Image(134,134));
 i[0].src="imgs/layout/lft_img_rot/1.gif";
 i[1].src="imgs/layout/lft_img_rot/2.gif";
 i[2].src="imgs/layout/lft_img_rot/3.gif";
 
// I use constants so it will be easy to change values if I put up new adds 
 var INTELLIMOUSE="script589128_0_2.html#a";
 var SIMCITY="script589128_0_2.html#b";
 var QUICKEN="script589128_0_2.html#c";
 
//get a random number between 0 and the number of adds available 
 var pictnum=Math.round(Math.random()*3)-1;
 while(pictnum<0 || pictnum>3) pictnum=Math.round(Math.random()*3)-1;
 
//change the banner add picture
 document.link0.src=i[pictnum].src;
 
//change the banner add link to match the picture 
// if(pictnum==0)
//  document.links[0].href=INTELLIMOUSE;
// else if(pictnum==1)
//  document.links[0].href=SIMCITY;
// else if(pictnum==2)
//  document.links[0].href=QUICKEN;
}
//-->
