﻿function Show_Sub(){ //舌签功能
  var index = $(this).parent().children().index($(this));
  $(this).siblings().removeClass('curr');
  $(this).addClass('curr');
  $(this).parents('.menu_head').siblings('.menu_body').hide();
  $(this).parents('.menu_head').siblings('.menu_body').eq(index).show();
}

$(function init() {
	$('.menu_head li').mouseover(Show_Sub);
});


