// -*- coding:utf-8 -*-

$(document).ready(function(){
    $("#menu #tail a").click(function(e) {
      e.preventDefault();
      $("#menu ul.mainmenu").slideToggle(1000);
      $("#menu #tail a").toggleClass("folded");
    });




    $("#menu ul li").click(function (event) { 
	    event.preventDefault();
	    
	    to_href = $(this).find("a").attr("href");
	    if (to_href)
		{
		    window.location.href = to_href;
		    return false;
		}
		
	    if( !$(this).parent().hasClass("submenu")){
			var submenu_id = $(this).find("ul").attr("id");
			$(".submenu:not(#"+submenu_id+")").hide(500);
			$(this).find(".submenu").toggle(500);
	    };
		
	    event.stopPropagation();
       
    });



});
