try {
	if (!smartad_strip_height) {
		smartad_strip_height = 0;
	}
} catch (e) {
	smartad_strip_height = 0;
}

$(function() {
	setOpfBanner();
	$(window).scroll(setOpfBanner);
	$(window).resize(setOpfBanner);
	
	function setOpfBanner() {
		$(".opfBannerBottom").each(function() {
			var t = smartad_strip_height - $(window).scrollTop();
			$(this).css("bottom", t + "px");
		});
	}
});