// 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 ) {
		var left_ad_top = 1150;
		var browserName=navigator.appName; 

		if (document.body.scrollTop > (left_ad_top - 30) || self.pageYOffset > left_ad_top + 10) {
			if (browserName=="Microsoft Internet Explorer") {
			  document.getElementById('auto-scroll-content').style.top = document.body.scrollTop - left_ad_top + 40;
			} else {
			  document.getElementById('auto-scroll-content').style.position = 'fixed';
			  document.getElementById('auto-scroll-content').style.left = '50%';
			  document.getElementById('auto-scroll-content').style.marginLeft = '30%';
			}
		} else if (document.documentElement.scrollTop < left_ad_top || self.pageYOffset < left_ad_top + 10) {
			if (browserName=="Microsoft Internet Explorer") {
			  document.getElementById('auto-scroll-content').style.top = '5px';
			} else {
			  document.getElementById('auto-scroll-content').style.position = 'static';
			  document.getElementById('auto-scroll-content').style.left = '0px';
			  document.getElementById('auto-scroll-content').style.marginLeft = '0px';
			}
		}
	}
}
