//TABÒ³Ç©
function setTab(name,cursel,n){
	for(i=1;i<=n;i++)
	{
		var menu=document.getElementById(name+i);
		var con=document.getElementById("con_"+name+"_"+i);
		menu.className=i==cursel?"tab_active":"tab_normal";
		con.style.display=i==cursel?"block":"none";
	}
}

//µ¼º½µ¯³ö
$(function(){

	$(".nav li").hover(
	  function () {
		$(this).children(".m_nav").show();
	  },
	  function () {
		$(this).children(".m_nav").fadeOut(200);
	  }
	); 


 }); 

//ÏêÇéÒ³µ¼º½
$(function(){

$("#right_nav h2").toggle(
  function () {
    $(this).addClass("on");
	$(this).next("ul").show();
  },
  function () {
    $(this).removeClass("on");
	$(this).next("ul").fadeOut(200);
  }
); 


 }); 


