function change_to_big(s) {
    var b1 = document.getElementById('smallPeelBack');
    var b2 = document.getElementById('bannerPeelBack');
    b2.style.top = (s == 1) ? '0px' : '-1000px';
    b1.style.top = (s == 1) ? '-1000px' : '0px';
    if (s == 1){
        thisMovie('banner2').init();
    }
}

function init() {
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName];
    } else {
        return document[movieName];
    }
}
