$(window).scroll(function() {
if ($(this).scrollTop() > 575){
$('.side-banner-sticky').addClass("content_fixed");
}
else{
$('.side-banner-sticky').removeClass("content_fixed");
}
});
$(window).scroll(function() {
if ($(this).scrollTop() > 575){
$('.side-banner-sticky').addClass("content_fixed");
}
else{
$('.side-banner-sticky').removeClass("content_fixed");
}
});