﻿function rollIn() {

}

function rollOut() {

}

var tmrShow = window.setTimeout(checkComplete, 100);
function checkComplete() {
    window.clearTimeout(tmrShow);
    if (document.readyState == "complete")
        tmrShow = window.setTimeout(ShowContent, 500);
    else
        tmrShow = window.setTimeout(checkComplete, 100);
}


function ShowContent() {
    var main = new Array();
    main[0] = $('MainBackground');
    main[1] = $('ImgSfondoTesto');
    main[2] = $('imgSection');
    for (var i = 0; i < main.length; i++) {
        if (main[i]) {
            main[i].style.display = "none";
            Effect.Appear(main[i]/*, { duration: 0.5 }*/
            , { afterFinish: function() { ScrollToAnchor(); } }
            );
        }
    }
    //main.style.backgroundImage = "url(Images/Sfondo/SfondoCorpo.png";

    try {
        var marks = document.all;
        for (var i = 0; i < marks.length; i++) {
            if (marks[i].tagName.toLowerCase() == ('marquee'))
                marks[i].start();
        }
    } catch (e) { }



}

function ScrollToAnchor() {
    try {
        if (document.location.href.indexOf("#") >= 0) {
            var strLink = document.location.href;
            strLink = strLink.substr(strLink.indexOf('#') + 1);
            //alert(strLink);
            //document.location.hash = strLink;
            window.location.hash = strLink;
        }
    } catch (e) { }
}
