// JavaScript Document
window.onscroll = scrolling;
 
function scrolling(){
	if(document.getElementById('innerdiv').clientHeight > document.body.clientHeight){ }
	else if(document.body.scrollTop > ((document.getElementById('content').clientHeight + 125) - document.getElementById('innerdiv').clientHeight)){ }
	else if(document.body.scrollTop > 235){ document.getElementById('innerdiv').style.top = (parseInt(document.body.scrollTop,10) - 125) + "px";}
	else if(document.body.scrollTop < 235){ document.getElementById('innerdiv').style.top = 110 + "px"; }
}
