//Help by JavaScript Kit(http://www.javascriptkit.com)
function random_img(){
var myimages=new Array()
//specify random images below. Put as many as you'd like
myimages[1]="images/header742_a.jpg"
myimages[2]="images/header742_b.jpg"
myimages[3]="images/header742_c.jpg"
myimages[4]="images/header742_d.jpg"
myimages[5]="images/header742_e.jpg"
myimages[6]="images/header742_f.jpg"
myimages[7]="images/header742_g.jpg"
myimages[8]="images/header742_h.jpg"
myimages[9]="images/header742_i.jpg"
myimages[10]="images/header742_j.jpg"
myimages[11]="images/header742_k.jpg"


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<h1><a href="index.html" title="Commonwealth Curriculum Pack"><img src="'+myimages[ry]+'" width="742" height="140" alt="ccp2002.com" /></a></h1>')
}
random_img();

