﻿// jQuery_accordion

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

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


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