 $(document).ready(
    function() {
        if (($.browser.msie) && ($.browser.version == "6.0")) {
            $("#top_center img, #act img, #limg img, #rimg img, #left img, div.y_n img, p.tsold img, p.tsell img, div.p9w_r img, li.ots img, p.resize img").each(
                function() {
                    var currentImg = $(this).attr("src");
                    $(this).attr("src", "/templates/pic/pixel.gif");
                    $(this).css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + currentImg + "', sizingMethod='crop');");
                }
            );
        }

        $("#p9cnt .p9main a").mouseover(function() {$(this).addClass("p9cnt_hover");});
        $("#p9cnt .p9main a").mouseout(function() {$(this).removeClass("p9cnt_hover");});
    }
);