﻿// Scrolling sidebar for your website

// Downloaded from Marcofolio.net

// Read the full article: http://www.marcofolio.net/webdesign/create_a_sticky_sidebar_or_box.html



window.onscroll = function () {

    if (window.XMLHttpRequest) {

        if (document.documentElement.scrollTop > 287 || self.pageYOffset > 287) {

            $('rightsidebar').style.position = 'fixed';

            $('rightsidebar').style.top = '0';

        } else if (document.documentElement.scrollTop < 287 || self.pageYOffset < 287) {

            $('rightsidebar').style.position = 'absolute';

            $('rightsidebar').style.top = '287px';

        }

    }

}
