// JavaScript Document

$(document).ready(function(){


	$(window).scroll(function(){
		if  ($(window).scrollTop() > $(".smartBannerIdentifier").offset({ scroll: false }).top){
		   $("#smartBannerWrapper").css("position", "relative");
		   //$("#sideMenu").css("top", $(this).scrollTop() - ($("#sideMenu").height()*2) + "px");
		   $("#smartBannerWrapper").css("top", $(this).scrollTop() - (350) + "px");
		}
		
		if  ($(window).scrollTop() <= $(".smartBannerIdentifier").offset({ scroll: false }).top){
		   $("#smartBannerWrapper").css("position", "relative");
		   $("#smartBannerWrapper").css("top", "0");
		}
	}); 
});
// modified by wintercounter – MOOvie.hu (Please keep this in your source, in the spirit of OpenSource)
// customized by tazki.com