function init(){ setHeader(); var elem = document.getElementsByTagName('img'); var figs = document.getElementsByTagName('figure'); var a; for (var i = 0; i < elem.length; i++) { //*** Loop through the images and copy the alt tag to the title tag for mouse hovers. elem[i].setAttribute('title', elem[i].getAttribute('alt')); //*** Also add a hyperlink to each image to open the original image. a=document.createElement('a'); a.href=elem[i].getAttribute('src'); a.target='_blank'; b=a.appendChild(elem[i]); //*** And stick it before the caption so the caption appears under the image figs[i].insertBefore(a, figs[i].childNodes[0]); } } function setHeader(){ document.getElementById("header").innerHTML = "
"; }