$(function () {
$("h2.tab_tit span").each(function (index, element) {
$(this).hover(function () {
$(this).addClass("active").siblings("span").removeClass("active");
$('.tab_tit a.Com_more').eq(index).show().siblings('.tab_tit a.Com_more').hide();
$(".tab_box").eq(index).show().siblings(".tab_box").hide();
})
});
})