$(document).ready(function(){
	$(window).scroll(function(){
		if ($(window).scrollTop() > $(".floating-box-top").offset().top){
			$("#floating-box").css("position", "fixed");
			$("#floating-box").css("top", "0");
		}

		if ($(window).scrollTop() <= $(".floating-box-top").offset().top){
			$("#floating-box").css("position", "relative");
			$("#floating-box").css("top", $(".floating-box-top").position);
		}
	});
});

