


$(document).ready( function () {

	// ジャンル毎にタブを閉じたり、開けたり
	
	jQuery(function(){
		$("#accord").accordion({
			header: "h2",
			active: false,
			autoHeight: false
		});
	
	});
	
	$("#accord h2").hover(function() {
		this.style.backgroundColor = "#e0e0ff";
	},
	function() {
		this.style.backgroundColor = "#efefef";
	});

});

