<!--
window.onload=function(){
var imageURL=["header_img01.jpg","header_img02.jpg","header_img03.jpg","header_img04.jpg","header_img05.jpg","header_img06.jpg","header_img07.jpg","header_img08.jpg","header_img09.jpg"];
var n=Math.floor(Math.random()*imageURL.length);
var imgTag=document.createElement("img");
imgTag.src="local_images/"+imageURL[n];
document.getElementById("h_img").appendChild(imgTag);
}
// -->