$(document).ready(function(){


	$(window).scroll(function(){
		if  ($(window).scrollTop() > $(".pausedBanban").offset({ scroll: false }).top){
		   $(".banbancontent").css("position", "fixed");
		   $(".banbancontent").css("top", "150");
		}
		
		if  ($(window).scrollTop() <= $(".pausedBanban").offset({ scroll: false }).top){
		   $(".banbancontent").css("position", "relative");
		   $(".banbancontent").css("top", $(".pausedBanban").offset);
		}
	}); 


});
