/* Sticky Sidebar */
function reposition(){
			var x = navigator; 
			if(x.appName == "Microsoft Internet Explorer"){
			/* Then do nothing!*/
			}else{
			
			
	
	
			var el = document.getElementById('fixme');
			
			var ScrollTop = document.body.scrollTop;
			if (ScrollTop == 0)
			{
			if (window.pageYOffset)
			ScrollTop = window.pageYOffset;
			
			else
			ScrollTop = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
			
			}
			if(ScrollTop < 280)
			el.style.top = 280 - ScrollTop + "px";
			
			else
			el.style.top = "0px";
			el.style.marginTop = "20px";
	
	
	
	
			var myWidth = 0, myHeight = 0;
			if( typeof( window.innerWidth ) == 'number' ) {
				//Non-IE
				myWidth = window.innerWidth;
				myHeight = window.innerHeight;
			} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
				//IE 6+ in 'standards compliant mode'
				myWidth = document.documentElement.clientWidth;
				myHeight = document.documentElement.clientHeight;
			} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
				//IE 4 compatible
				myWidth = document.body.clientWidth;
				myHeight = document.body.clientHeight;
			}
			
			if(myHeight <= 470){
				el.style.position="absolute";
				el.style.top = 280 + "px";
			}else{
				el.style.position="fixed";
			}
		}
	}
		
		
/* Sticky Sidebar */