// JavaScript Document
$(function(){
	$(".menu_k a").each(function(index){
		$(this).mouseover(function(){
			var cont = $(this).html();			
			if (cont == 'Home') {
    			$(this).html("").append("首页")
  			} else if(cont == 'Video') {
    			$(this).html("").append("视频")
  			} else if(cont == 'Events') {
    			$(this).html("").append("事件")
  			} else if(cont == 'Teachers') {
    			$(this).html("").append("老师介绍")
  			} else if(cont == 'Courses') {
    			$(this).html("").append("课程")
  			} else if(cont == 'Crews') {
    			$(this).html("").append("舞团介绍")
  			} else if(cont == 'Product') {
    			$(this).html("").append("产品")
  			} else if(cont == 'About') {
    			$(this).html("").append("关于我们")
  			} else if(cont == 'BBS') {
    			$(this).html("").append("论坛")
  			}	
			$(this).next("span.shadow").css("display","block");
		});
		$(this).mouseout(function(){
			var cont = $(this).html();
			if (cont == '首页') {
    			$(this).html("").append("Home")
  			} else if(cont == '视频') {
    			$(this).html("").append("Video")
  			} else if(cont == '事件') {
    			$(this).html("").append("Events")
  			} else if(cont == '老师介绍') {
    			$(this).html("").append("Teachers")
  			} else if(cont == '课程') {
    			$(this).html("").append("Courses")
  			} else if(cont == '舞团介绍') {
    			$(this).html("").append("Crews")
  			} else if(cont == '产品') {
    			$(this).html("").append("Product")
  			} else if(cont == '关于我们') {
    			$(this).html("").append("About")
  			} else if(cont == '论坛') {
    			$(this).html("").append("BBS")
  			}
			$(this).next("span.shadow").css("display","none");
		});
	});	
});

