$(document).ready(function () {
    run();

    $(window).resize(function () {
        run();
    });

    function run() {
        var t = Math.floor($(window).width());
        if (t > 1360) {
            $("#MenuProductContent").show();
        } else {
            $("#MenuProductContent").hide();
        }
    }
});

