<!--
/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]="/content/img/r3a_feat_a.jpg"
mycontent[2]="/content/img/r3a_feat_b.jpg"
mycontent[3]="/content/img/r3a_feat_c.jpg"

//specify corresponding links below
var imglinks=new Array()										
imglinks[1]="javascript:PopupPic('/content/img/orig/002.jpg')"
imglinks[2]="javascript:PopupPic('/content/img/orig/004.jpg')"
imglinks[3]="javascript:PopupPic('/content/img/orig/007.jpg')"

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imglinks[ry]+'"'+'><img src="'+mycontent[ry]+'" width="390" height="58" /></a>')
}
random_content()
//-->
