// JavaScript Document
$(document).ready(function(){


	$(window).scroll(function(){
		if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
		   $("#callInterface").css("position", "fixed");
		   $("#callInterface").css("top", "0");
		}
		
		if  ($(window).scrollTop() <= $(".smartBannerIdentifier").offset({ scroll: false }).top){
		   $("#callInterface").css("position", "relative");
		   $("#callInterface").css("top", $(".smartBannerIdentifier").offset);
		}
	}); 


});
