// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:
// customize: Takashi Hirasawa (http://css-happylife.com/)

$(document).ready(function() {
	$("div.title_section").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$("div.detail_section").css("display","none");
	$("div.title_section").click(function(){
		$(this).next().slideToggle("normal");
		//$(this).next().css("display","block");
	});
});	





