window.addEvent('domready',function(){

	if($('ad_float')){
		window.addEvent('scroll', function() {
			float_menu('ad_float');
		});	
	}	
	function float_menu(id){
		var windowPad = 30;
		var	fixedPos = $('reference').getPosition();
		var fixedPosB = $('reference_b').getPosition();
		var fixedDif = fixedPosB.y - fixedPos.y;
		var curScroll = window.getScroll();
		var curDiff = curScroll.y - fixedPos.y + windowPad;
		var curFixedDif = curDiff + 600 + windowPad;
		if(curDiff > 0){
			// $('tt').set('text',fixedPosB.y + ' - ' + fixedPos.y + ' - ' + fixedDif + ' - ' + curDiff + ' - ' + (curDiff + 600 + windowPad));
			if(curFixedDif <= fixedDif){
				$(id).setStyle('top',curDiff + 'px');
			} else {
				$(id).setStyle('top',fixedDif - 600 - windowPad + 'px');	
			}
		} else {
			$(id).setStyle('top','0');	
		}
	}	
});