var Header = {};

Header.ShowBigImage = function(){
    document.getElementById('flashDiv').style.height="1100px";    
}

Header.ShowSmallImage = function(){
    document.getElementById('flashDiv').style.height = "585px";
}

Header.NormalShow = function(){
    document.getElementById('flashDiv').style.height="295px";
}

Header.MoveScreenToNormalShow = function () {
    $(document).ready(function () {
        //alert('Move after close big one');
        $('html, body').stop().animate({
            scrollTop: 0
        }, 1000, 'easeOutSine');
    });
}

Header.MoveScreenToShowSmallImage = function () {
    $(document).ready(function () {
        //alert('Move after next/prev big one');
        $('html, body').stop().animate({
            scrollTop: 0
        }, 1000, 'easeOutSine');
    });
}
