// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:
// customize: Takashi Hirasawa (http://css-happylife.com/)

$(document).ready(function() {
	$("h4.tit_h4").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("ul.entrylist01").css("display","none");
	$("h4.tit_h4").click(function(){
		$(this).next().slideToggle("slow");
    });
});