window.onscroll = function() {

	/*var isSAFARI = navigator.userAgent.indexOf("Safari") !=-1;
	//isSAFARI = true;
	if ( isSAFARI == false ) {

		var y=0;
		var hbody = document.body.offsetHeight;
		var hb = document.body.clientHeight;
		var ybox = 0;
		var hd = document.getElementById('rightBoxes').offsetHeight;
		y = document.body.scrollTop;
		//window.status = "y="+y;		
		if ( y >= 450 ) {
			document.getElementById('rightBoxes').style.position="absolute";
			document.getElementById('rightBoxes').style.top = document.body.scrollTop + 2;
		} else {
			document.getElementById('rightBoxes').style.top = "0px";
			document.getElementById('rightBoxes').style.position="relative";
		}
		document.getElementById('rightBoxes').style.position="relative";
	}*/
	var y = document.body.scrollTop;
	var box = document.getElementById('rightBoxes');
	//window.status = "y="+y;	
	/*if ( y >= 236 ) {
		box.style.top = y-236;
	}
	else
	{
		box.style.top = 0;
	}*/
	if(box !== null)
	{
		box.style.top = Math.max(0, y-236);
	}

}
function scrollonLoad() {
	var isSAFARI = navigator.userAgent.indexOf("Safari") !=-1;

	if ( isSAFARI == false ) {
		var hb = document.body.clientHeight;

		document.getElementById('rightBoxes').style.position="relative";
	}
}

