function setTab(name,cursel,n){
	for(i=1;i<=n;i++)
	{	
		var nameID = name+i;
		var menu=document.getElementById(nameID);
		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);
		  }
	); 
});