var ads=new Array(35)
for (i=0; i <36; i++)
ads[i]=new Array(3)
ads[0][0]="/static/flash/ads/brightwave.swf";
ads[0][1]="400";
ads[0][2]="50";
ads[1][0]="/static/flash/ads/cornerstone.swf";
ads[1][1]="400";
ads[1][2]="50";
ads[2][0]="/static/flash/ads/adobe.swf";
ads[2][1]="400";
ads[2][2]="50";
ads[3][0]="/static/flash/ads/trainer1.swf";
ads[3][1]="468";
ads[3][2]="60";
ads[4][0]="/static/flash/ads/CiscoWebEx.gif";
ads[4][1]="http://www.webex.co.uk";
ads[5][0]="/static/flash/ads/bannerAd6.swf";
ads[5][1]="400";
ads[5][2]="50";
ads[6][0]="/static/flash/ads/e2train.gif";
ads[6][1]="http://www.e2train.com";
ads[7][0]="/static/flash/ads/intran_banner.gif";
ads[7][1]="http://www.informationtransfer.com";
ads[8][0]="/static/flash/ads/intellego.gif";
ads[8][1]="http://www.intellego.co.uk";
ads[9][0]="/static/flash/ads/line.swf";
ads[9][1]="400";
ads[9][2]="50";
ads[10][0]="/static/flash/ads/saffron.gif";
ads[10][1]="http://www.saffroninteractive.com";
ads[11][0]="/static/flash/ads/skillsoft_books.swf";
ads[11][1]="400";
ads[11][2]="48";
ads[12][0]="/static/flash/ads/skillsoft_knowledgecentres.swf";
ads[12][1]="400";
ads[12][2]="48";
ads[13][0]="/static/flash/ads/skillsoft_management.swf";
ads[13][1]="400";
ads[13][2]="48";
ads[14][0]="/static/flash/ads/skillsoft_skillport.swf";
ads[14][1]="400";
ads[14][2]="48";
ads[15][0]="/static/flash/ads/smart.gif";
ads[15][1]="http://www.unbelievabletechnology.com";
ads[16][0]="/static/flash/ads/TowardsMaturity.swf";
ads[16][1]="400";
ads[16][2]="50";
ads[17][0]="/static/flash/ads/cblearning.swf";
ads[17][1]="400";
ads[17][2]="50";
ads[18][0]="/static/flash/ads/bannerAd6.swf";
ads[18][1]="400";
ads[18][2]="50";
ads[19][0]="/static/flash/ads/e2train.gif";
ads[19][1]="http://www.e2train.com";
ads[20][0]="/static/flash/ads/epic_banner.swf";
ads[20][1]="400";
ads[20][2]="50";
ads[21][0]="/static/flash/ads/ilxgorup.gif";
ads[21][1]="http://www.ilxgroup.com";
ads[22][0]="/static/flash/ads/imc.gif";
ads[22][1]="http://www.im-c.co.uk";
ads[23][0]="/static/flash/ads/kineo.swf";
ads[23][1]="400";
ads[23][2]="50";
ads[24][0]="/static/flash/ads/line.swf";
ads[24][1]="400";
ads[24][2]="50";
ads[25][0]="/static/flash/ads/mohive.swf";
ads[25][1]="400";
ads[25][2]="50";
ads[26][0]="/static/flash/ads/rwd.gif";
ads[26][1]="http://www.rwd.com/";
ads[27][0]="/static/flash/ads/Xyleme.swf";
ads[27][1]="468";
ads[27][2]="60";
ads[28][0]="/static/flash/ads/videoarts.swf";
ads[28][1]="468";
ads[28][2]="60";
ads[29][0]="/static/flash/ads/thales.gif";
ads[29][1]="http://www.thales-trainingconsultancy.com";
ads[30][0]="/static/flash/ads/giuntilabs.swf";
ads[30][1]="468";
ads[30][2]="60";
ads[31][0]="/static/flash/ads/learndirect.gif";
ads[31][1]="http://www.learndirect-business.co.uk";
ads[32][0]="/static/flash/ads/NIIT.swf";
ads[32][1]="400";
ads[32][2]="50";
ads[33][0]="/static/flash/ads/eln.gif";
ads[33][1]="http://www.elearningnetwork.org";
ads[34][0]="/static/flash/ads/citrix.gif";
ads[34][1]="http://learn.gotomeeting.com/forms/EMEA-G2MC-WP-Forrester-LearnDirector-S?ID=701000000005IL8";
ads[35][0]="/static/flash/ads/enlight.swf";
ads[35][1]="468";
ads[35][2]="60";

theAd = Math.floor(Math.random()*(ads.length));
type = ads[theAd][0].split('.');
	
showAd = function(){
	if(type[1].toLowerCase() == "gif" || type[1].toLowerCase() == "jpg" || type[1].toLowerCase() == "png"){
		document.getElementById('adSpace').innerHTML='<a href="' + ads[theAd][1] + '" target="_blank"><img src="' + ads[theAd][0] + '" /></a>';
	}
	else{
		swfobject.embedSWF(ads[theAd][0], "adSpace", ads[theAd][1], ads[theAd][2], "8.0.0", "/static/flash/ads-home.swf", "false", {});
	}
	function insertAfter(parent, node, referenceNode) {
		parent.insertBefore(node, referenceNode.nextSibling);
	}
}