//<![CDATA[

	function random_imglink(){
		
	//specify random images below
	var imagelocation=new Array()
	imagelocation[1]="http://www.theorangeboxlive.co.uk/images/evolver-magazine.jpg"
	imagelocation[2]="http://www.theorangeboxlive.co.uk/images/aztec-media.jpg"

	//specify corresponding alt text below
	var imagealt=new Array()
	imagealt[1]="Evolver Magazine"
	imagealt[2]="Aztec Media"

	//specify corresponding links below
	var imagelink=new Array()
	imagelink[1]="http://www.evolver.org.uk/"
	imagelink[2]="http://www.aztec4design.com/"
	
	var ry=Math.floor(Math.random()*imagelocation.length)
	
	if (ry==0)
	ry=1
	document.write('<a href='+'"'+imagelink[ry]+'"'+' target="_blank"><img src="'+imagelocation[ry]+'" alt="'+imagealt[ry]+'" width="468" height="60" /></a>')
	}
	
	random_imglink()

//]]>