$(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");
		});
});

<!-- 非表示対応[スタイル: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(){
		$(this).next().slideToggle("normal");
		});
});
