// 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.onload = function()

{
			$('toplink').set('opacity','0');
}

window.onscroll = function()

{

	if( window.XMLHttpRequest ) {

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

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

			$('left').style.top = '0px';
			
			$('right').style.position = 'fixed';

			$('right').style.top = '0px';
			
			$('toplink').fade((window.getScroll().y > 200) ? 'in' : 'out');

		} else {
		
			$('left').style.position = 'absolute';

			$('left').style.top = '72px';
		
			$('right').style.position = 'absolute';

			$('right').style.top = '72px';
			
			$('toplink').set('opacity','0');
			
			$('toplink').style.display = 'block';

		}

	}

}