var _Padding2=document.getElementById('rightColumnScrollAds').offsetTop+25,_scrollMax2,_bnr2,_bnrTop2,_prevPos2=0;
		function Scrollinit() {
				_bnr2 = document.getElementById('rightColumnScrollAds');
				if (screen.width > 600){
				_bnrTop2 = _bnr2.offsetTop;
				_scrollMax2 = document.getElementById('guidePage').offsetHeight+_bnrTop2-_bnr2.offsetHeight-_Padding2;
				scrollBnr2();
				}
		}

		function scrollBnr2() {
				if (screen.width > 600 ){
				if (_scrollMax2 > _bnrTop2 && _prevPos2 != pos()) {
						_prevPos2 = pos();
						if (pos() < _scrollMax2 && pos() > _bnrTop2) {
								_bnr2.style.top = pos() + 'px';
						}
						else if (pos() < _scrollMax2) {
						 _bnr2.style.top = _bnrTop2 + 'px';
					}
						else {
						 _bnr2.style.top = _scrollMax2 + 'px';
						}
				}

				_scrollMax2 = document.getElementById('guidePage').offsetHeight+_bnrTop2-_bnr2.offsetHeight-_Padding2;
				setTimeout('scrollBnr2();',100);

				}
		}
		function pos() {
				 if (window.innerHeight){
				  return window.pageYOffset;
				 }
				 else if (document.documentElement && document.documentElement.scrollTop){
				  return document.documentElement.scrollTop;
				 }
				 else if (document.body) {
				  return document.body.scrollTop;
				 }
		}