function FloatMenuLeft(){
	var animationSpeed=1500;
	var animationEasing='easeOutQuint';
	var scrollAmount=$(document).scrollTop();
	var newPosition=71+scrollAmount;
	if($(window).height()<$('#fl_menu_left').height()+$('#fl_menu_left .menu').height()){
		$('#fl_menu_left').css('top',0);
	} else {
		$('#fl_menu_left').stop().animate({top: newPosition}, animationSpeed, animationEasing);
	}
}
function FloatMenuRight(){
	var animationSpeed=1500;
	var animationEasing='easeOutQuint';
	var scrollAmount=$(document).scrollTop();
	var newPosition=71+scrollAmount;
	if($(window).height()<$('#fl_menu_right').height()+$('#fl_menu_right .menu').height()){
		$('#fl_menu_right').css('top',0);
	} else {
		$('#fl_menu_right').stop().animate({top: newPosition}, animationSpeed, animationEasing);
	}
}
$(window).load(function() {
	FloatMenuLeft();
        FloatMenuRight();
});
$(window).scroll(function () {
	FloatMenuLeft();
        FloatMenuRight();
});
