$(document).ready(function ()
        {
            $('div.section').each(function ()
            {
                var element = $(this).children('h3');
                var detelement = $(this);
                //$(this).css({"margin-top":"15px"});
                //$(element).addClass('show-details');
                $(element).toggle(function () {
                    //$(this).animate({opacity:"show"}, 500, "linear", function(){
                        $(this).parent().children('ul').removeClass('hidden');
                        //$(detelement).css({'margin-top':'15px'});
                        $('div.section').children('div.song_text').removeClass('hidden');
                    //});
                }, function () {
                    //$('div.song_text').animate({opacity:"hide"}, 500, "linear", function(){
                        $(this).parent().children('ul').addClass('hidden');
                        $('div.song_text').html('');
                    //});
                });
                $(this).children('ul').addClass('hidden');
            });
            $('div#lyrik').children('div').addClass('hidden');
            //-----    
            $('div.section a').click(function(){
                var fragment = $(this).attr('href').substr(1);
                var alb = $(this).attr('href').substr(1,3);
                var htmlStr= $('div#'+fragment).html();
                //$('div.song_text').animate({opacity:"show"}, 500, "linear", function(){
                    $('div#song_text_'+alb).html(htmlStr);
                    //$('div#'+fragment).html(htmlStr);
                 //});
            });
            //-----
        });
