jQuery(document).ready(function(){
        jQuery('#totop').addClass('versteckt');
        jQuery('#mail').hide();
            jQuery('.social .mail').click(function() {
                jQuery('#mail').slideToggle('slow');
                return false;
            });

        jQuery('#text-516347483 .textwidget').hide();
            jQuery('#text-516347483 h3').click(function () {
                jQuery(this).next('.textwidget').slideToggle('slow');
            });            
                
        jQuery('#langnett').hide();
        jQuery('.lang').click( function() {
            jQuery('#langnett').slideToggle('slow');
            return false;
        });
        jQuery('.langzu').click( function() {
            jQuery('#langnett').slideUp('slow');
            return false;
        });
        jQuery("#totop a").click(function(){
            jQuery.scrollTo("#header", 1500, {axis: "y"} );
        return false;
        });
        jQuery(window).scroll(function() {
            var pos = jQuery(window).scrollTop();
            if (pos <= 600) {
                jQuery('#totop').addClass('versteckt');
            }
            var pos = jQuery(window).scrollTop();
            if (pos >= 601) {
                jQuery('#totop').removeClass('versteckt');
            }
        });
});
