// JavaScript Document
Array.prototype.random = function(){
	var rand = Math.floor(this.length * Math.random());
    return this[rand];
}
    
var sm_ads = [
	// Apple and iTunes
	['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=146261.10005915&type=4&subid=0"><IMG alt="" border="0" src="http://images.apple.com/itunesaffiliates/US/generic/TVGreyFree_120x90.jpg"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=146261.10005915&type=4&subid=0">'],
	['<a target="new" href="http://click.linksynergy.com/fs-bin/click?id=AJaaq9B9toM&offerid=146261.10005931&type=4&subid=0"><IMG alt="iTunes & App Store" border="0" src="http://www.apple.com/itunesaffiliates/beatles/beatles_120x90.jpg"></a><IMG border="0" width="1" height="1" src="http://ad.linksynergy.com/fs-bin/show?id=AJaaq9B9toM&bids=146261.10005931&type=4&subid=0">']
];

var sm_ad = sm_ads.random();
document.write(sm_ad);
