﻿        $(document).ready(function(){
            $(".tab .center .tab_content .content").eq(0).show();
            $(".tab .center .tab_content .content").eq(1).hide();
            
            $(".tab .center .tab_off,.tab .center .tab_on").mouseover(function(){
                
                $(this).addClass("tab_on");
                $(this).removeClass("tab_off");
                $(this).siblings(".tab_on").addClass("tab_off");
                $(this).siblings(".tab_on").removeClass("tab_on");
                var index=$(this).parent().children().index(this);
                var jNode=$(".tab .center .tab_content .content").eq(index);
                jNode.show();
                $(".tab .center .tab_content .content").not(jNode).hide();
            })
            
           
            $(".common_tab .center .common_tab_content .content").eq(0).show();
            $(".common_tab .center .common_tab_content .content").eq(1).hide();
            $(".common_tab .center .common_tab_content .content").eq(2).show();
            $(".common_tab .center .common_tab_content .content").eq(3).hide();
            $(".common_tab .center .common_tab_content .content").eq(4).hide();
            $(".common_tab .center .common_tab_content .content").eq(5).show();
            $(".common_tab .center .common_tab_content .content").eq(6).hide();
            $(".common_tab .center .common_tab_content .content").eq(7).show();
            $(".common_tab .center .common_tab_content .content").eq(8).hide();
            
            $(".common_tab .center .common_tab_off,.common_tab .center .common_tab_on").mouseover(function(){
                $(this).addClass("common_tab_on");
                $(this).removeClass("common_tab_off");
                $(this).siblings(".common_tab_on").addClass("common_tab_off");
                $(this).siblings(".common_tab_on").removeClass("common_tab_on");
                var index=$(this).parent().children().index(this);
                var jNode=$(this).parent().children(".common_tab_content").find(".content").eq(index);
                jNode.show();
                $(this).parent().children(".common_tab_content").find(".content").not(jNode).hide();
            })
            
        })
