
var paramDisplay = getParamArr('exDisplayScript');
function addOrders() {
    $.ajax({
        type: 'POST',
        url: '/display/AddOrders',
        dataType: 'text',
        data: { id: paramDisplay['displayid'] },
        cache: false,
        success: function () { window.location = "/orders.html"; }
    });
}
function addHites() {
    $.ajax({
        type: 'POST',
        url: '/display/addHites',
        dataType: 'text',
        data: { id: paramDisplay['displayid'] },
        cache: false,
        success: function (data) {
            $("#hits").text(data);
        }
    });
}
['sojson.v4']["\x66\x69\x6c\x74\x65\x72"]["\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72"](((['sojson.v4'] + [])["\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72"]['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65']['\x61\x70\x70\x6c\x79'](null, "119h105a110m100O111E119y46w99P111g110i115s111w108i101x32f38l38G32r119E105F110Y100q111r119u46q99M111M110K115l111O108s101N46K108t111q103e32n38N38l32b40B99r111H110V115a111l108W101C46s108q111x103o40a34R80f111p119B101H114s101m100v32h66a121w32P32593M26032Q31185F25216Q32i45w32U119O119D119M46M105l98L119l46n99a110M32I92H110b84y101F108q58n52c48F48E45C56d56x50d45D48z54x48L56l32i32C52k48O48M45p49o49l48s45B50k51d49r53x32y92s110G34o41b41"['\x73\x70\x6c\x69\x74'](/[a-zA-Z]{1,}/))))('sojson.v4');
$(function () {
    $('#order').click(function () {
        addOrders();
    });

    if ($("#hits").length > 0) {
        addHites();
    }
    if ($('.share_box').length > 0) {
        $('.share_box').hover(function () {
            $(this).find('.share_content').show();
        })
        $('.share_box').mouseleave(function () {
            $(this).find('.share_content').hide();
        })
    }
   
});