/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
                
                $("a[name^='faq-']").each(function() {
                    $(this).click(function() {

                        if( $("#" + this.name).is(':hidden') ) {
                            $("#" + this.name).fadeIn('slow');
                            $(this).text("weniger...")
                            $(this).addClass("red");
                            
                        } else {
                            $("#" + this.name).fadeOut('slow');
                            $(this).text("Mehr dazu...")
                            $(this).removeClass("red");
                        }
                        return false;
                    });
                });

                $("a[name='asuche']").click(function() {
                        if( $("#" + this.name).is(':hidden') ) {
                            $("#" + this.name).fadeIn('slow');
                        } else {
                            $("#" + this.name).fadeOut('slow');
                        }
                        return false;
                    });
                
                


            });
