	$(window).load(function(){
		var $win = $(window),
			$ad = $('#abgne_float_ad').css('opacity', 0).show(),	
			_width = $ad.width(),
			_height = $ad.height(),
			_diffY = 20, _diffX = 20,
			_moveSpeed = 800;
		
		$ad.css({
			top: $(document).height(),
			left: $win.width() - _width - _diffX,
			opacity: 1
		});
		
		$win.bind('scroll resize', function(){
			var $this = $(this);
			

			$ad.stop().animate({
				top: $this.scrollTop() + $this.height() - _height - _diffY,
				left: $this.scrollLeft() + $this.width() - _width - _diffX
			}, _moveSpeed);
		}).scroll();
		
		$('#abgne_float_ad .abgne_close_ad').click(function(){
			$ad.hide();
		});
	});
