/*
This is the JavaScript code to make the Accordion menu work on the Music page. Setting can be adjusted in here
 */
$(document).ready(function(){
							   
		$("dd:not(:first)").hide();
		$("dt a").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("fast");
			return false;
		});
		
	});
