// JavaScript Document
<!--
function fade(step) {
            var imgs = document.getElementsByTagName("img");

            step = step || 0;

            imgs[1].style.opacity = step/100;
            imgs[1].style.filter = "alpha(opacity=" + step + ")"; // IE

            step = step + 0.2;

            if (step <= 100) {
                window.setTimeout(function () { fade(step); }, 1);
            }
        }
//-->
