// JavaScript Document

$(document).ready(function(){


	$(window).scroll(function(){
		if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
		   $(".banner").css("position", "fixed");
		   $(".banner").css("top", "0");
		   $("#currentCampaignsBg").css("margin-top", "0");
		}
		
		if  ($(window).scrollTop() > $(".bannerBottom").offset({ scroll: false }).top){
			$(".banner").css("position", "fixed");
			$("#currentCampaignsBg").css("margin-top", "-104px");			
		}
		
		if  ($(window).scrollTop() <= $(".smartBannerIdentifier").offset({ scroll: false }).top){
		    $("#currentCampaignsBg").css("margin-top", "142px");
		    $(".banner").css("top", $(".smartBannerIdentifier").offset);
		}
	});});
