// Editing Instructions
// 1. Change '#your_div_id' to whatever the ID attribute of your DIV is
// 2. Change '175' to whatever the height of your header is, if you have no header, set to 0

window.onscroll = function()
{
    if( window.XMLHttpRequest ) {
        if (document.documentElement.scrollTop > 700 || self.pageYOffset > 700) {
            $('#banners_skyscraper_sticky').css('position','fixed');
            $('#banners_skyscraper_sticky').css('top','10px');
        } else if (document.documentElement.scrollTop < 700 || self.pageYOffset < 700) {
            $('#banners_skyscraper_sticky').css('position','absolute');
            $('#banners_skyscraper_sticky').css('top','710px');
        }
    }
}
