
// accordion

/* 
 ■使用箇所■
 ・「重要なお知らせ」

 ※jQuery1.3.2に依存しています。

*/ 

$(function(){
	var obj_acco = $('.toggleSwitch')
	if( obj_acco ){
		$('.toggleBox').css('display','none');
		obj_acco.stop().click(function(){
			$(this).next().slideToggle('normal');
			$(this).toggleClass("toggleStatus_open");
			return false;
		});
		obj_acco.hover(
			function(){
				$(this).addClass("toggleSwitch_mouseover");
			},
			function(){
				$(this).removeClass("toggleSwitch_mouseover");
			}
		);
	}
});


