diff --git a/app/views/layouts/base_syllabus.html.erb b/app/views/layouts/base_syllabus.html.erb
index 45e77dbad..5d26c2ffa 100644
--- a/app/views/layouts/base_syllabus.html.erb
+++ b/app/views/layouts/base_syllabus.html.erb
@@ -146,6 +146,24 @@
function show_edit_base_info() {
$("#syllabus_base_info").html("<%=escape_javascript(render :partial => 'layouts/syllabus_edit_info', :locals => {:syllabus => @syllabus}) %>");
}
+
+ //侧导航栏配置设置
+ $(".homepageLeftMenuCoursesLine").mouseover(function(){
+ $(this).children(".shild").css("background","url(/images/hwork_icon.png) -82px -399px no-repeat");
+ $(this).children().css("color","#ffffff");
+ });
+ $(".homepageLeftMenuCoursesLine").mouseout(function(){
+ $(this).children(".shild").css("background","url(/images/hwork_icon.png) -6px -354px no-repeat");
+ $(this).children().css("color","#808080");
+ });
+ $(".subNavRow").mouseover(function(){
+ $(this).css("background-color","#269ac9");
+ $(this).children().css("color","#ffffff");
+ });
+ $(".subNavRow").mouseout(function(){
+ $(this).css("background-color","#ffffff");
+ $(this).children().css("color","#888888");
+ });