//Making a Fresh Content Accordion
//http://tutorialzine.com/2009/12/colorful-content-accordion-css-jquery/
$(document).ready(function(){
	$.easing.def = "easeOutBounce";
	$('li.button a').click(function(e){
		var dropDown = $(this).parent().next();
		$('.dropdown').not(dropDown).slideUp('slow');
		dropDown.slideToggle('slow');
		/* Preventing the default event (which would be to navigate the browser to the link's address) */
		e.preventDefault();
	})
/* マウスアウトで閉じる
.mouseout(function(){
		$('.dropdown').slideUp('slow');
	}); */
});




