$(document).ready(function () {
    $('#bigpush').cycle({ fx: 'fade', speed: 1000, timeout: 10000 });

    //CASHIER SHOW MORE INFO
    $(".cashier_info2").click(function () {
        $(this).parents("ul").children(".cashier_info").toggle("slow");
        return false;
    });

    //PRD_ZOOM
    $("a.zoom").fancybox({
        'hideOnContentClick': true,
        'titleShow': false
    });

    $("a.login").fancybox({
        'hideOnContentClick': false
    });

    // open sidebar contact-windows

    $("a.fancy-info").fancybox({
        'transitionIn': 'fade',
        'transitionOut': 'fade',
        'autoDimensions': 'false',
        'width': '500px',
        'height': '400px',
        'titleShow': 'false'
    });

    //PRD_READ MORE
    getHeight = $(".prd_desc").height(); //get original height
    $(".prd_desc").height("70px"); //set new height
    $(".prd_desc-more").toggle(function () {
        $(".prd_desc").animate({ height: getHeight }, "slow");
    }, function () {
        $(".prd_desc").animate({ height: "70px" }, "slow");
    });

    //PRD_NAV
    $(".PrdSpec").click(function () {
        $("a.tab").removeClass("active");
        $(this).addClass("active");
        $("div.tab").hide();
        $("#PrdSpec").show();
        return false;
    });
    $(".PrdRelated").click(function () {
        $("a.tab").removeClass("active");
        $(this).addClass("active");
        $("div.tab").hide();
        $("#PrdRelated").show();
        return false;
    });
    $(".PrdChilds").click(function () {
        $("a.tab").removeClass("active");
        $(this).addClass("active");
        $("div.tab").hide();
        $("#PrdChilds").show();
        return false;
    });

    if ($('#PrdChilds').length) {
        $('#PrdSpec').hide();
        $('#PrdChilds').show();
    }
    else {
        $('#PrdSpec').show();
        $('#PrdChilds').hide();
        $('.PrdSpec').addClass("active")
    }
});
