$(document).ready(function() {
  $('#navi').superfish({
		delay:       1000,                            // one second delay on mouseout
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
		speed:       'slow',                          // faster animation speed
		autoArrows:  true,                           // disable generation of arrow mark-up
		dropShadows: false                            // disable drop shadows
  });
}); 

//$(document).ready(function() {
//  $('#sidebar').superfish({
//		delay:       100,                            // one second delay on mouseout
//		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
//		speed:       'slow',                          // faster animation speed
//		autoArrows:  true,                           // disable generation of arrow mark-up
//		dropShadows: false                            // disable drop shadows
//  });
//}); 

$(document).ready(function() {
	$('#sidebar li a.search').click(function() {
	 // $('.sidebar-sub-navi').addClass('active');
	 $('.sidebar-sub-navi').css("display","block");
	});
});
$(document).ready(function() {
	$('#sidebar ul li a.close').click(function() {
	  //$('.sidebar-sub-navi').addClass('close');
	  $('.sidebar-sub-navi').css("display","none");
	});
});
