var myUrls=new Array();
var myImages=new Array();
var myText=new Array();

myUrls[0]="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=301066307&mt=8";
myUrls[1]="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302957533&mt=8";
myUrls[2]="http://www.mgatelabs.com/pdweb/";

myText[0] = "Try Til3 for the iPhone and iPod Touch, its a fun and addictive matching game!";
myText[1] = "Try Tip-O-Matic, a simple tip calculator for the iPhone & iPod touch";
myText[2] = "Learn more about Port Defender, a new game for the iPhone & iPod touch";

myImages[0] = "http://www.3d2toy.com/images/ads/ad_01.png";
myImages[1] = "http://www.3d2toy.com/images/ads/ad_02.png";
myImages[2] = "http://www.3d2toy.com/images/ads/ad_03.png";

var i = Math.floor(Math.random()*3);

document.write( "<div style=\"text-align:center\"><a href=\""+myUrls[i]+"\" title=\""+myText[i]+"\" target=\"_blank\"><img border=\"0\" src=\""+myImages[i]+"\"></a></div>" );
