jQuery(document).ready(function(){
	//sidebar滑动门效果
	jQuery(".sidebar-title").css("cursor","pointer")
	.click(function(){
		if(jQuery(this).next().find("ul:visible").length == 0)
			jQuery(this).next().find("ul").animate({height: 'show'}, 500);
		else
			jQuery(this).next().find("ul").animate({height: 'hide'}, 500);
					});
	jQuery(".sidebar-title").next().find("h3").css("cursor","pointer")
	.click(function(){
		jQuery(this).next().animate({height: 'toggle'}, 500);		
					});
	




});