$(function(){
    if($.browser.msie && $.browser.version<7){
        var _this = $("div.mainMenu > ul > li > a");
        _this.hover(function(){
             menuName = $(this).parent().attr("class").slice(-2);
             menuImage = "/images/index_tx0" + menuName + "on.png";
            $(this).find("span").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+menuImage+"',sizingMethod='scale')");
        },
        function(){
             menuName = $(this).parent().attr("class").slice(-2);
             menuImage = "/images/index_tx0" + menuName + ".png";
            $(this).find("span").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+menuImage+"',sizingMethod='scale')");
        });

        var _this2 = $(".mainContents #contents .leftContentsInner .products > a");
        _this2.mouseover(function(){
            $(this).find("span").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/index_il001on.png',sizingMethod='scale')");
        });
        _this2.mouseout(function(){
            $(this).find("span").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/index_il001.png',sizingMethod='scale')");
        });
    }
});
