function fixShadow() { var og = document.getElementById('HeaderImageTextDiv'); var shadow = document.getElementById('HeaderImageTextShadowDiv'); shadow.style.position = 'absolute'; shadow.style.left = getLeft(og) + 2 + 'px'; shadow.style.top = getTop(og) + 2 + 'px'; var pc = document.getElementById('PhotoCreditsDiv'); var hi = document.getElementById('HeaderImageDiv'); pc.style.position = 'absolute'; pc.style.top = (getBottom(hi) - 15) + 'px'; pc.style.left = '700px'; } document.getElementById('HeaderImageDiv').style.backgroundImage = 'url("/siteimages/photos/region/OR-3.jpg")'; document.onload addEvent(window, 'load', fixShadow);