/**
 * ../JUX/overrides/modules/myband/js/myband.js
 * Created on 03/11/07 by Manager
**/
$(document).ready(function(){			
	manageSongs();
});
function manageSongs(){
	$(".songs li").click(function(){
		$(this).find("ul").each(function(i, n){		
				$(n).toggle("slow");	
				$(this).parent().toggleClass("open");
		});
	});
}
