$(document).ready(function() {
	$("#styleMenu > .show-all").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#styleMenu > .hide-all").css("display","none");
	$("#styleMenu > .show-all").click(function(){
		$(this).next().slideToggle("normal");
		});
	$("#styleMenu > p").click(function(){
	$(this).children().toggleClass('down-arw');
	});
	$("#styleMenu > .show-all").children(function(){
		if(
			$(this).hasClass != "hide-all"
			){
			$("#styleMenu > p").children().toggleClass("down-arw");
			};
	});
});

<!-- 非表示対応[スタイル:PPVサービス] -->
$(document).ready(function() {
	$("#leftmenu-service > h3").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("#leftmenu-service > .hidden-all").css("display","none");
	$("#leftmenu-service > h3").click(function(){
		$("#leftmenu-service > h3 > span").toggleClass("down-arw");
		$(this).next().slideToggle("normal");
		});
});

