// Scrolling sidebar for your website
// 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 > 102 || self.pageYOffset > 102) {
			$('tab').style.position = 'fixed';
			$('tab').style.top = '0';
		} else if (document.documentElement.scrollTop < 102 || self.pageYOffset < 102) {
			$('tab').style.position = 'absolute';
			$('tab').style.top = '102px';
		}
	}
}
