﻿jQuery(document).ready(function() {
    jQuery("#BackFont").text("");

    jQuery("#Logo").mousemove(function() {
        jQuery("#BackFont").text("回到首页");
    });

    jQuery("#Logo").mouseout(function() {
        jQuery("#BackFont").text("");
    });

    jQuery("#Content_Left>a").mousemove(function() {
        jQuery("a.Content_Left_Point").removeClass("Content_Left_Point");
    });

    jQuery("#Content_Left>a").mouseout(function() {
        jQuery("#Content_Left>a[class]").addClass("Content_Left_Point");
    });
});

