// JavaScript Document
Array.prototype.random = function(){
	var rand = Math.floor(this.length * Math.random());
    return this[rand];
}
    
var ads = [
	// Office Depot
    ['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=174585.10001088&subid=0&type=4"><IMG border="0"   alt="Clearance" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=174585.10001088&subid=0&type=4&gridnum=1"></a>'], 
    ['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=174585.10001098&subid=0&type=4"><IMG border="0"   alt="Office Depot" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=174585.10001098&subid=0&type=4&gridnum=1"></a>'],
    ['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=174585.10001048&subid=0&type=4"><IMG border="0"   alt="Office Depot, Inc" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=174585.10001048&subid=0&type=4&gridnum=1"></a>'],
    ['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=174585.10000127&subid=0&type=4"><IMG border="0"   alt="Office Depot, Inc" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=174585.10000127&subid=0&type=4&gridnum=1"></a>'],
	// Apple and iTunes
	['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=146261.10001932&type=4&subid=0"><IMG alt="Apple iTunes" border="0" src="http://images.apple.com/itunesaffiliates/US/2007/04/05/movies468x60_green.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=146261.10001932&type=4&subid=0">'],
	['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=146261.10001715&type=4&subid=0"><IMG alt="Apple iTunes" border="0" src="http://images.apple.com/itunesaffiliates/US/SOTW/SOTW_468x60.jpg"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=146261.10001715&type=4&subid=0">'],
	['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=146261.10001924&type=4&subid=0"><IMG alt="Apple iTunes" border="0" src="http://images.apple.com/itunesaffiliates/US/2007/04/05/music468x60_blue.gif"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=146261.10001924&type=4&subid=0">']
];

var ad = ads.random();
document.write(ad);
