$(function () {
    $('div.fold-content').each(function () {

       var text = $('div.fold-text',$(this))
        .addClass('fold-text-hidden');

       $('<a/>')
        .attr('href','#')
        .addClass('fold-button')

        .click(function () {
            text.slideToggle('slow');
            $(this)
                .toggleClass('fold-button-active')
                .blur();
            return false
        })

        .append($('<span/>').text('Öffnen'))
        .appendTo($(this));
        
    });
});

jQuery(document).ready(function(){
//alert("asdf");
jQuery('#service_navi li:first-child a').addClass('home2');


});
