function stayHome(){

    scrollTop = window.pageYOffset || document.documentElement.scrollTop || 0;
    document.getElementById('waterMark').style.top = scrollTop + "px";
}

function init(){

    if (screen.width < 1024)
        return;

    document.getElementById('waterMark').style.display = "block";

    if (screen.height > 1000)
        document.getElementById('highResBanners').style.display = "block";
}

//window.onscroll=stayHome;
