var gameInterval;
;(function(k, e) {
    var A = k.WBActivity.resize = function() {
		
	};
    var c = k.WBActivity.start = function() {
			k.WBActivity.hideLoading();
			
			hideSlogan();
			$(".rollLottoryWrapper").css({'visibility':"visible"});
			if(showlucklist=='1'){
				$(".lucklistsBox").css({'display':"flex"});
			}
			zp.init();
    }
})(window, jQuery);
function hideSlogan() {
    $(".Panel.Top").css({
        top: "-" + $(".Panel.Top").height() + "px"
    });
    $(".Panel.Bottom").css({
        bottom: "-" + $(".Panel.Bottom").height() + "px"
    });
	$("#panel_status").val("0");
}
function showSlogan() {
    $(".Panel.Top").css({
        top: 0
    });
    $(".Panel.Bottom").css({
        bottom: 0
    })
   $("#panel_status").val("1");
};
;(function($) {
$.fn.extend({
    animateControl: function (a,fn) {
        this.addClass('animated ' + a).one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
			if(fn){
				fn();
			}
			$(this).removeClass('animated ' + a);
        });
        return this;
    }
});
})(jQuery);