        $(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
            });

            //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;
            });
        });