/*	Expanding Menus
 *
 *	Created by Alar Aule  May 2011
*/

function expandingAccordionMenus() {
	var speed = 100;
	
	var active_items = $("#accordion > .active > ul");
	if(active_items != null){
		active_items.show(1);
	}
	
	$("#accordion > .parent > *").click(function(){
		if(false == $(this).next().is(':visible')) {
			$('#accordion > li > ul').slideUp(speed);
		}
		$(this).next().slideToggle(speed);
	});
}

/**
* Graphical user interface for metaudio Player.
*/
function metaudioPlayer(settings) {
	alert('tuli');
}
