﻿/// <reference path="jquery-1.4.2.min.js" />

$(function () {
    $(".IN1:contains('产品中心') .LI2 a").click(function () {
        $(".IN1 .LI2 a").css("color", ""); 
        $("#table1 td").removeClass("aColor");
        document.cookie = "color=" + escape($(this).text()) + ";path=/;";
        $(".IN1:contains('产品中心') .LI2 a:contains('" + $(this).text() + "')").css("color", "Red");
        $("#table1 td:contains('" + $(this).text() + "')").addClass("aColor");
    });
});
