try{$(document).ready(function(){ $('.ns-show-gift').click(function(){ $('#ns_gift_popup').remove(); var gift_html = '
'; $('body').append(gift_html); $('#ns_gift_popup .ns-close, #ns_gift_popup .ns-mask').click(function(){ $(this).parents('#ns_gift_popup').remove(); }); MV.cookie('hide_gift_popup',1,86400); }); if(MV.cookie('hide_gift_popup') != 1){ $('.ns-show-gift').click(); } $('.ns-go-to-top').click(function(){ $('html').animate({scrollTop: 50},10).animate({scrollTop: 0},200); }); });}catch(e){}