Team:NKU China/Javascript/main

$(document).ready(function(){

   $("li").click(function(){
       $(this).addClass("active").siblings().removeClass("active");
   })


    $("li").hover(
        function(){
            $(this).find('.row-text').hide();
            $(this).find('.row-pict').show();
        },
        function(){
            $(this).find('.row-text').show();
            $(this).find('.row-pict').hide();
        }
           );

});