// Random Image 

function random_imglink(){
var myimages=new Array()
myimages[1]="./img/header/01.jpg"
myimages[2]="./img/header/02.jpg" 
myimages[3]="./img/header/03.jpg"
myimages[4]="./img/header/04.jpg"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0 align= absbottom>')
}
random_imglink()
