/*-- datepicker -- */

    (function($){
        $.fn.datePicker = function(options){
            // Plugin options
            var now = new Date();
            var defaults = {
                hideInput: false, // Hide the coresponding input
                month: now.getMonth(), // Start month
                year: now.getFullYear(), // Start year
                format: "d.m.y", // Date format
                disableWeekend: true, // Disable Sa/So clicks
                speed: 200 // in km/h 
            };
            var options = $.extend(defaults, options);
            var dp_count = 0;
            // Init plugin to each
            return this.each(function(){
                // Pass vars
                var op = options;
                var el = $(this);
                var mp = ( $(this).parent().is('label')) ? $(this).parent() : $(this); //mp as in mountpoint
                dp_count++;
                // Generate main .datepicker
                if(op.hideInput == true) el.hide();
                $('<div id="dp'+dp_count+'" class="datepicker"><h2>init</h2><a class="dpprev" href="#" title="'+back+'">'+back+'</a><a class="dpnext" href="#" title="'+next+'">'+next+'</a><table><thead><tr></tr></thead><tbody></tbody></table></div>').insertAfter(mp);
                var datepicker = $("#dp"+dp_count);
                $.each(days_list, function(index, value){ $("thead tr", datepicker).append('<th>'+value+'</th>') });
                //Measure fill
                for(t=0;t<=6;t++){ $("table", datepicker).append("<tr><td class='dpday dpclickable active'>19</td><td class='dpday dpclickable'>20</td><td class='dpday dpclickable'>21</td><td class='dpday dpclickable'>22</td><td class='dpday dpclickable'>23</td><td class='dpday'>24</td><td class='dpday'>25</td></tr>"); }  
                //CSS settings
                datepicker.css( { "width":$("table", datepicker).width()+"px","height":datepicker.height()+"px","overflow":"hidden" });
                // Fill init selected month
                fillDateTable( datepicker, el, op.month, op.year, op );
                // Generate the buttons
                $('a', datepicker).click(function(event){
                    event.preventDefault();
                    mont = jQuery.inArray($("h2 .dpmonth", datepicker).html(), mont_list);
                    year = $("h2 .dpyear", datepicker).html();
                    direction = $(this).hasClass("dpprev");
                    if( direction ) mont--;
                    else mont++;
                    if(mont>11){
                        mont = 0;
                        year++;
                    }
                    if(mont<0){
                        mont = 11;
                        year--;  
                    }
                    // Refill in selected direction
                    $("table", datepicker).stop(true, true).animate({marginLeft: (direction) ? '100%' : '-100%'}, op.speed, function(){
                        fillDateTable( datepicker, el, mont, year, op );
                        $("table", datepicker).css("marginLeft", (direction) ? '-100%' : '100%').animate({marginLeft:0}, op.speed);
                    });
                });
            });
            // Feed the .datepicker with data
            function fillDateTable(datepicker, el, mont, year, op){
                $("h2", datepicker).html('<span class="dpmonth">'+mont_list[mont] +'</span> <span class="dpyear">'+ year+'</span>');
                $("tbody tr", datepicker).remove();
                $("tbody", datepicker).append( generateMonthTable(mont, year));
                ncd = (op.disableWeekend == false) ? ":empty" : ":empty, .dpweekend";
                $('tbody td', datepicker).not(ncd).click(function(){
                    var format = op.format;
                    format = format.replace('m', ((jQuery.inArray($("h2 .dpmonth", datepicker).html(), mont_list))+1));
                    format = format.replace('d', $(this).html());
                    format = format.replace('y', $("h2 .dpyear", datepicker).html());
                    el.val(format);
                    $('tbody td.active', datepicker).removeClass("active");
                    $(this).addClass('active');
                    // remove error classes
                    el.parent().removeClass('error');
                    el.siblings('.error_msg').remove();
                });
            }
            // Generate the tbody
            function generateMonthTable(mont, year){
                var date = new Date(year, mont)
                var days = date.getDate();
                var firs = (date.getDay());
                var last = (new Date((new Date(year, mont+1,1))-1)).getDate();
                var now = new Date();
                var html = "<tr>";
                var d = 1;
                for(c=1;c<= Math.ceil(((last+(firs-1))/7))*7 ;c++){
                    var tdclass = ''; 
                    if(c>=firs && d<=last) tdclass += "dpday";
                    if(((c % 7 == 0) || ((c+1) % 7 == 0)) && d<=last) tdclass += " dpweekend";
                    if(!((c % 7 == 0) || ((c+1) % 7 == 0)) && c>=firs && d<=last ) tdclass += " dpclickable";
                    if(mont==now.getMonth() && year==now.getFullYear() && d==now.getDate()) tdclass += " dptoday";
                    html += "<td class='"+tdclass+"'>";
                    if(c>=firs&&d<=last) html += d++;
                    html += "</td>";
                    if (c % 7 == 0 && d<=last) html += "</tr><tr>";
                }
            return html + "</tr>";
            }
        };
    })(jQuery);


/*-- datev unternehmen online --*/

    // DATEV ad video
    function init_DATEV_ad_video(){
        if(!$('#datev_ad_video').length)
            return;
        var flashvars = {};
        flashvars.minutes = 0;
        flashvars.seconds = 49;
        flashvars.movieurl = datev_ad_video;
        flashvars.introimageurl = datev_ad_intro;
        flashvars.videotitle = 'Illona Mayer, Gastronomin';
        flashvars.autoplay = 1;
        flashvars.startfullscreen = 1;
        var attributes = {}, params = {};
        params.allowfullscreen = "true";
        params.wmode = "transparent";
        swfobject.embedSWF(datev_videoplayer, "datev_ad_video", datev_ad_width, datev_ad_height, "9.0.0", '', flashvars, params, attributes);
    }

    // DATEV demovideos
    function init_DATEV_demo_video(){
        var demovideo = '.datev .demovideo';
        if(!$(demovideo).length)
            return;
        $(demovideo).live('click', function(){
            var height = this.rel.split(',')[1];
            var width = this.rel.split(',')[0];
            window.open(this.href, '', 'dependent=yes,height=' + height + ',location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,width=' + width);
            return false;
        });
    }

    // DATEV slideshow
    function init_DATEV_slideshow(){
        var demovideo = '.datev .slideshow .demovideo',
            demovideos = '.datev .slideshow .demovideos';
        if(!$(demovideos).length)
            return;

        // Create slideshow buttons etc.
        var width = 0,
            demovideolinks = $(demovideo);
        demovideolinks.each(function(){
            width = width + $(this).outerWidth(true);
            $(this).clone().appendTo($(demovideos));
        });
        var slideshow_box = $(demovideos).css({
            'width': width*2
        }).wrap(
            $('<div>').addClass('slideshow_box')
        );
        $(slideshow_box).after(
            prev = $('<a>').attr({
                'class': 'btn previous',
                'href': '#',
                'title': 'Vorriges Video'
            }).text('Vorriges Video'),
            next = $('<a>').attr({
                'class': 'btn next',
                'href': '#',
                'title': 'Nächstes Video'
            }).text('Nächstes Video')
        ).wrap(      
            $('<div>').addClass('slideshow_videos')
        );
        // Next and previous image
        $(prev).unbind().click(function(){
            if(!$(demovideos).is(':animated')){
                var currentMarginLeft = parseInt($(demovideos).css('margin-left'));
                if($(demovideos).css('margin-left') == 'auto') // IE fix
                    currentMarginLeft = 0;
                if(currentMarginLeft == 0){
                    currentMarginLeft = 0-width;
                    $(demovideos).css('margin-left', currentMarginLeft);
                }
                var newMarginLeft = currentMarginLeft + $(demovideo).outerWidth(true);
                $(demovideos).animate({
                    'margin-left': newMarginLeft
                });
            }
            return false;
        });
        $(next).unbind().click(function(){
            var currentMarginLeft = parseInt($(demovideos).css('margin-left'));
            if($(demovideos).css('margin-left') == 'auto')
                currentMarginLeft = 0;
            var newMarginLeft = currentMarginLeft - $(demovideo).outerWidth(true);
            if(!$(demovideos).is(':animated')){
                $(demovideos).animate({
                    'margin-left': newMarginLeft
                }, function() {
                    if(Math.abs(newMarginLeft) >= width)
                        $(demovideos).css('margin-left', 0);
                });
            }
            return false;
        });
    }

    // DATEV product menu
    function init_DATEV_product_menu(){
        var product = '.datev.slidemenu',
            menu = '.datev.slidemenu .menu';
        if(!$(menu).length)
            return;

        var menuPosition = $(menu).offset().top,
            maxOffset = $(product).outerHeight(true) - $(menu).outerHeight(true);
        
        $(window).scroll(function(){           
            if(menuPosition >= $(window).scrollTop()) {
                $(menu).stop().animate( {'top':0}, 'fast' );
            }
            if(maxOffset >= (($(window).scrollTop() - menuPosition) + 20) && menuPosition <= $(window).scrollTop()) {            
                $(menu).stop().animate(
                    {'top': ($(window).scrollTop() - menuPosition) + 20}, 'fast'
                );
            }
        });
    }

    // DATEV analysis overview
    function init_DATEV_analysis_overview(){
        var overview = '.datev.analysis_online .accordion';
        if(!$(overview).length)
            return;
        $('.text', overview).hide();
        $('li', overview).each(function(){
            var li = this
            if($('ul', li).length){
                ul = $('> ul', li).css('cursor', 'default').remove();
                atext = $(li).text();
                $(li).toggle(function(){
                    $(this).addClass('open').removeClass('close').children('ul').show();
                }, function(){
                    $(this).addClass('close').removeClass('open').children('ul').hide();
                }).addClass('close').css('cursor', 'pointer').html(
                    $('<a>').attr('href', '#').text(atext).after(ul.hide())
                );
            }
        });
        $('.header', overview).click(function(){
            var el = this;
            if($(el).next('.text').length){
                $(el).next('.text').slideToggle('slow', function(){
                    if(!$(el).next('.text').is(':visible'))
                        $(el).parent('.entry').addClass('close').removeClass('open');
                });
                $(el).parent('.entry').addClass('open').removeClass('close');
                $(el).parent('.entry').siblings('.entry:visible').addClass('close').removeClass('open').children('.text').slideUp('slow');
            }
            return false;
        }).not('.notext').css('cursor', 'pointer').not('.notext').wrapInner(
            $('<a>').attr('href', '#')
        );
    }





/*-- IE6nomore --*/

    $.IE6nomore = function(){
        if(!$('#ie6nomore').length)
            return;
        $('#ie6nomore').css({
            'left': 0,
            'top': 0,
            'bottom': 0,
            'right': 0,
            'position': 'absolute',
            'z-index': 9999
        });
    };

/*-- Swap image --*/

    function swapImage(element, newimage){
        var oldsrc = element.src;
        element.src = newimage;
        if (!element.onmouseout){
            element.onmouseout = function(){
                swapImage(this, oldsrc);
            }
        }
    }

/*-- Spam protection --*/

    function getAdr(prefix, postfix, text){
        document.write('<a href="mailto:' + prefix + '@' + postfix + '">' + (text ? text.replace(/&quot;/g, '"').replace(/%EMAIL%/, prefix + '@' + postfix) : prefix + '@' + postfix) + '</a>');
    }



/*-- Clickable parent element from a link --*/

    (function($){
        $.fn.clickable = function(){
            return this.each(function(){
                var el = this;
                if(!$('.click', el).length)
                    return;
                $(el).data('clickable_uri', $('.click', el).attr('href'));
                $(el).css('cursor', 'pointer');
                $(el).click(function(){
                    window.location = $(this).data('clickable_uri');
                })
            });
        }
    })(jQuery);

/* Border radius */

    (function($){
        $.fn.borderRadius = function(radius){
            return this.each(function(e){
                $(this).css({
                    '-moz-border-radius': radius,
                    '-webkit-border-radius': radius,
                    'border-radius': radius
                });
            });
        };
    })(jQuery);

/*-- Iframe popup --*/

    (function($){
        $.fn.IframePopup = function(options){
            if(!$(this).length)
                return;

            // Settings
            var IP_Settings = {
                margin: 20, // Margin from the iframe popup
                width: 700, // Default popup width
                height: 500, // Default popup height
                borderradius: '10px'  // Popup border-radius
            };
            var IP_Settings = $.extend(IP_Settings, options);

            // Create iframe popup
            createIframePopup();
            // Open iframe popup
            $(this).click(function(){
                // Hide scrollbar and fadein overlay
                $('body, html').css('overflow', 'hidden');
                $(ip_overlay).fadeTo('slow', 0.8);
                // Set tabindex="-1" to content
                $('a, input, textarea, select, button').not('.close').each(function(){
                    $(this).addClass('tabindex').attr('tabindex', '-1');
                });
                // Get popup size from rel attribut
                var popupHeight = this.rel.split(',')[1];
                var popupWidth = this.rel.split(',')[0];
                if(popupWidth == null || popupHeight == null){
                    popupWidth = IP_Settings.width;
                    popupHeight = IP_Settings.height;
                }
                // Set popup size
                var NormalCSS = {
                    'bottom': 'auto',
                    'height': popupHeight+'px',
                    'left': '50%',
                    'margin-left' : Math.floor(-(popupWidth)/2)+'px',
                    'margin-top': Math.floor(-(popupHeight)/2)+'px',
                    'max-height': popupHeight+'px',
                    'top': '50%',
                    'width' : popupWidth+'px'
                };
                var FlexibleCSS = {
                    'bottom': IP_Settings.margin+'px',
                    'height': 'auto',
                    'margin-top': 0,
                    'top': IP_Settings.margin+'px'
                };
                // Normal iframe popup size
                $(ip_popup).css(NormalCSS).borderRadius(IP_Settings.borderradius).show();
                // Flexible iframe popup size
                $(window).resize(function(){
                    ($(this).height() <= ($(ip_popup).outerHeight()+2*IP_Settings.margin)) ? $(ip_popup).css(FlexibleCSS) : $(ip_popup).css(NormalCSS);
                });
                ($(window).height() <= ($(ip_popup).outerHeight()+2*IP_Settings.margin)) ? $(ip_popup).css(FlexibleCSS) : $(ip_popup).css(NormalCSS);
                // Insert iframe title
                $(ip_title).html(this.title);
                // Insert iframe content
                $(ip_popup).addClass('ip_loading');
                $(ip_iframe).attr('src', this); 
                // Preloader
                $(ip_iframe).css('visibility', 'hidden');
                $(ip_iframe).load(function(){
                    $(ip_popup).removeClass('ip_loading');
                    $(ip_iframe).css('visibility', 'visible');
                });
                $(document).bind('keydown', keyDown);
                return false;
            });

            // Close popup
            function closeIframePopup(){
                $('body').css('overflow', bodyOverflow);
                $('html').css('overflow', htmlOverflow);
                $(ip_popup).hide();
                $(ip_overlay).fadeOut('slow');
                $(window).unbind('resize');
                // Remove tabindex="-1"
                $('.tabindex').each(function(){
                    $(this).removeClass('tabindex').removeAttr('tabindex');
                });
            }

            // Keyboard events
            function keyDown(event){
                var code = event.keyCode;
                return ($.inArray(code, [27,88,67]) >= 0) ? closeIframePopup() : true;
            }

            // Create iframe popup
            function createIframePopup(){
                $('body').append(
                    ip_overlay = $('<div>').attr({ 'class': 'ip_overlay' }).hide().click(closeIframePopup),
                    ip_popup = $('<div class>').attr({ 'class': 'ip_popup' }).append(
                        ip_close = $('<a>').attr({ 'class': 'close', href: '#', title: close+' [ESC]' }).text(close).click(closeIframePopup),
                        ip_title = $('<h2>').attr({ 'class': 'title' }),
                        $('<div>').attr({ 'class': 'ip_content' }).append(
                            ip_iframe = $('<iframe>').attr({ 'src': '', 'frameborder': '0' })
                        )
                    ).hide()
                );
                $([
                    bodyOverflow = $('body').css('overflow'),
                    htmlOverflow = $('html').css('overflow')
                ])
            }
        };
    })(jQuery);

/*-- slimbox 2.03 --*/

    (function(w){var E=w(window),u,g,F=-1,o,x,D,v,y,L,s,n=!window.XMLHttpRequest,e=window.opera&&(document.comtextMode=="CSS1Comtext")&&(w.browser.version>=9.3),m=document.documentElement,l={},t=new Image(),J=new Image(),H,a,h,q,I,d,G,c,A,K;w(function(){w("body").append(w([H=w('<div id="lbOverlay" />')[0],a=w('<div id="lbCenter" />')[0],G=w('<div id="lbBottomContainer" />')[0]]).css("display","none"));h=w('<div id="lbImage" />').appendTo(a).append(q=w('<div style="position: relative;" />').append([I=w('<a id="lbPrevLink" href="#" />').click(B)[0],d=w('<a id="lbNextLink" href="#" />').click(f)[0]])[0])[0];c=w('<div id="lbBottom" />').appendTo(G).append([w('<a id="lbCloseLink" href="#" />').add(H).click(C)[0],A=w('<div id="lbCaption" />')[0],K=w('<div id="lbNumber" />')[0],w('<div style="clear: both;" />')[0]])[0]});w.slimbox=function(O,N,M){u=w.extend({loop:false,overlayOpacity:0.8,overlayFadeDuration:400,resizeDuration:400,resizeEasing:"swing",initialWidth:250,initialHeight:250,imageFadeDuration:400,captionAnimationDuration:400,counterText:"Image {x} of {y}",closeKeys:[27,88,67],previousKeys:[37,80],nextKeys:[39,78]},M);if(typeof O=="string"){O=[[O,N]];N=0}y=E.scrollTop()+((e?m.clientHeight:E.height())/2);L=u.initialWidth;s=u.initialHeight;w(a).css({top:Math.max(0,y-(s/2)),width:L,height:s,marginLeft:-L/2}).show();v=n||(H.currentStyle&&(H.currentStyle.position!="fixed"));if(v){H.style.position="absolute"}w(H).css("opacity",u.overlayOpacity).fadeIn(u.overlayFadeDuration);z();k(1);g=O;u.loop=u.loop&&(g.length>1);return b(N)};w.fn.slimbox=function(M,P,O){P=P||function(Q){return[Q.href,Q.title]};O=O||function(){return true};var N=this;return N.unbind("click").click(function(){var S=this,U=0,T,Q=0,R;T=w.grep(N,function(W,V){return O.call(S,W,V)});for(R=T.length;Q<R;++Q){if(T[Q]==S){U=Q}T[Q]=P(T[Q],Q)}return w.slimbox(T,U,M)})};function z(){var N=E.scrollLeft(),M=e?m.clientWidth:E.width();w([a,G]).css("left",N+(M/2));if(v){w(H).css({left:N,top:E.scrollTop(),width:M,height:E.height()})}}function k(M){w("object").add(n?"select":"embed").each(function(O,P){if(M){w.data(P,"slimbox",P.style.visibility)}P.style.visibility=M?"hidden":w.data(P,"slimbox")});var N=M?"bind":"unbind";E[N]("scroll resize",z);w(document)[N]("keydown",p)}function p(O){var N=O.keyCode,M=w.inArray;return(M(N,u.closeKeys)>=0)?C():(M(N,u.nextKeys)>=0)?f():(M(N,u.previousKeys)>=0)?B():true}function B(){return b(x)}function f(){return b(D)}function b(M){if(M>=0){F=M;o=g[F][0];x=(F||(u.loop?g.length:0))-1;D=((F+1)%g.length)||(u.loop?0:-1);r();a.className="lbLoading";l=new Image();l.onload=j;l.src=o}return false}function j(){a.className="";w(h).css({backgroundImage:"url("+o+")",visibility:"hidden",display:""});w(q).width(l.width);w([q,I,d]).height(l.height);w(A).html(g[F][1]||"");w(K).html((((g.length>1)&&u.counterText)||"").replace(/{x}/,F+1).replace(/{y}/,g.length));if(x>=0){t.src=g[x][0]}if(D>=0){J.src=g[D][0]}L=h.offsetWidth;s=h.offsetHeight;var M=Math.max(0,y-(s/2));if(a.offsetHeight!=s){w(a).animate({height:s,top:M},u.resizeDuration,u.resizeEasing)}if(a.offsetWidth!=L){w(a).animate({width:L,marginLeft:-L/2},u.resizeDuration,u.resizeEasing)}w(a).queue(function(){w(G).css({width:L,top:M+s,marginLeft:-L/2,visibility:"hidden",display:""});w(h).css({display:"none",visibility:"",opacity:""}).fadeIn(u.imageFadeDuration,i)})}function i(){if(x>=0){w(I).show()}if(D>=0){w(d).show()}w(c).css("marginTop",-c.offsetHeight).animate({marginTop:0},u.captionAnimationDuration);G.style.visibility=""}function r(){l.onload=null;l.src=t.src=J.src=o;w([a,h,c]).stop(true);w([I,d,h,G]).hide()}function C(){if(F>=0){r();F=x=D=-1;w(a).hide();w(H).stop().fadeOut(u.overlayFadeDuration,k)}return false}})(jQuery);

    if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)){
        jQuery(function($){
            $("a[rel^='lightbox']").slimbox({counterText: countertext, easing: "easeOutElastic"}, null, function(el){
                return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
            });
        });
    }


/*-- display elements --*/

    (function($){
        $.fn.showElement = function(options){
            var SE_Settings = {
                handler: 'toggle',
                destination: '',
                animate: false
            };
            var SE_Settings = $.extend(SE_Settings, options);

            // hide href anchor destination
            if($(this).length){
                if($(this).is('a')){
                    var destination = ($(SE_Settings.destination).length) ? $(SE_Settings.destination) : $('#'+$(this).attr('href').split('#').pop());
                }
                else{
                    $(this).wrapInner('<a href="#" />');
                    var destination = $(SE_Settings.destination);
                }
                destination.hide();
                // show destination
                if(SE_Settings.handler == 'toggle'){
                    // toogle destination
                    $(this).toggle(
                        function(){ (SE_Settings.animate) ? destination.animate(SE_Settings.animate, { duration: 'slow' }) : destination.show(); },
                        function(){ (SE_Settings.animate) ? destination.animate(SE_Settings.animate, { duration: 'slow' }) : destination.hide(); }
                    );
                }
                else if(SE_Settings.handler == 'mouseover'){
                    // show destination on mouseover
                    $(this).bind({
                        click: function(){ return false; },
                        mouseover: function(){ (SE_Settings.animate) ? destination.animate(SE_Settings.animate, { duration: 'slow' }) : destination.show(); },
                        mouseout: function(){ (SE_Settings.animate) ? destination.animate(SE_Settings.animate, { duration: 'slow' }) : destination.hide(); }
                    });
                }
            }
        };
    })(jQuery);

/*-- Default value -- */

    (function($){
        $.fn.defaultValue = function(){
            $(this).focus(function(){
                if(!$(this).data('defaultValue')) $(this).data('defaultValue', $(this).attr('value'));
                if($(this).data('defaultValue') == $(this).attr('value')) $(this).attr('value', '');
            }).blur(function(){
                if(!$(this).attr('value').length) $(this).attr('value', $(this).data('defaultValue'));
            });
        };
    })(jQuery);

/*-- Dropdown menu --*/

    (function($){
        $.fn.DropdownMenu = function(options){
            var defaults = {
                removeTitle: true,
                timeOut: 1000
            };
            var options = $.extend(defaults, options);
            var navInterval;
            var el = $(this);
            if(el.length && options.removeTitle)
                $('a', el).attr('title', '');
            $('li', el).not('li li', el).mouseover(function(){
                if(navInterval)
                    clearInterval(navInterval);
                $('li.hover', el).removeClass('hover');
                $(this).addClass('hover');
            }).mouseout(function(){
                $(this).addClass('delete');
                if($(this).has('ul').length > 0)
                    navInterval = setInterval (function(){ $('li.delete', el).removeClass('hover delete'); }, options.timeOut);
                else
                    $('li.delete', el).removeClass('hover delete');
            });
        };
    })(jQuery);



/*-- Create onchange select --*/

    (function($){
        $.fn.createOnchangeSelect = function(options){
            var settings = $.extend({
                'label': false,
                'group': false,
                'id': 'selection'
            }, options);

            return this.each(function(){
                var el = this;
                if(!$('li a', el).length)
                    return;
                if(settings.group){
                    // Create form and select
                    $(el).append(
                        form = $('<form>').attr('action', '').append(
                            select = $('<select>').attr({
                                'id': settings.id,
                                'name': settings.id
                            }).addClass($(this).attr('class'))
                        )
                    );
                    // Create optgroup
                    $(settings.group, el).each(function(){
                        $(select).append(
                            optgroup = $('<optgroup>').attr('label', $(this).text())
                        );
                        // Fill select with options
                        $.fn.createOnchangeSelect.fillSelect($(this).next('ul'), optgroup);
                    });
                }
                else{
                    $('ul, ol', el).each(function(){
                        // Create form and select
                        $(this).after(
                            form = $('<form>').attr('action', '').append(
                                select = $('<select>').attr({
                                    'id': settings.id,
                                    'name': settings.id
                                }).addClass($(this).attr('class'))
                            )
                        );
                        // Fill select with options
                        $.fn.createOnchangeSelect.fillSelect(el, select);
                    });
                }
                // Onchange
                $(select).change(function(){
                    location.href=this.value;
                });
                // Create label
                if(settings.label){
                    $(form).prepend(
                        label = $('<label>').attr('for', settings.id).text($(settings.label).text())
                    );
                }
                // Remove non javascript html code
                $('ul, ol, '+settings.group, el).remove();
                $(settings.label).remove();
            });
        }

        // Fill select with options
        $.fn.createOnchangeSelect.fillSelect = function(el, select){
            $('li a', el).each(function(){
                $(select).append(
                    option = $('<option>').val(this.href).text($(this).text())
                );
                if($(this).hasClass('active'))
                    $(option).attr('selected', 'selected');
            });
        }
    })(jQuery);



/*-- mitarbeiter --*/

    function mitarbeiter(ma) {
                for(var i=0; i < memberid.length; i++){
                    if (memberid[i]==ma){    
                        document.getElementById(ma).style.display='block' ;}
                    else {
                        document.getElementById(memberid[i]).style.display='none' ;}
                }
             
    }


 
    


/*-- DOM -- */

    $(function(){
        // IE6nomore
        $.IE6nomore();
        
        // Datepicker
         $('.appointmentmaker input.date').datePicker({ 'hideInput': true });
        
        // News
        $('#news_selection').createOnchangeSelect({ 'label': '#news_selection h3' });
        // Infolists
        $('.selection').createOnchangeSelect({ 'group': '.group' });
        // Show elements
        $('.show_disclaimer').showElement();
        $('.show_fontsize').showElement({ 'handler': 'mouseover' });
        // Iframe popup
        $('.popup').IframePopup();
        // Table
        $('.downloads td').clickable();
        $('.links_section td').clickable();
        $('.jobs td').clickable();

        if (!$('.startpage').length) {

            //Forms
            $('form.application, form.appointmentmaker').forms({'multipage': false});
            $('form.newsletter, form.inforequest, form.recommendation').forms({ 'multipage': false});
            $('form.contact').forms({ 'multipage': false, 'summarypage' : false});
        
            // Datev
            init_DATEV_ad_video();
            init_DATEV_slideshow();
            init_DATEV_demo_video();
            init_DATEV_product_menu();
            init_DATEV_analysis_overview();
            $('form.datev_inforequest').forms({ multipage: true });

        }

        // min-height Anpassung
        var windowHeight = $(window).height();
        var contentHeight =$("#content").outerHeight();
        var diff = windowHeight-contentHeight-195-93-40;
        
        var textHeight = $("#text").outerHeight();
        var leftHeight = $("#subnav").outerHeight()+$("#sujet").outerHeight()+165;

        if(diff > 0)
        {
            $("#content").css('height', $("#content").height()+diff);
        }
           

        $(window).resize(function(){
           if($("form.contact").length) return false;
           if($("form.appointmentmaker").length) return false;

            var windowHeight = $(window).height();
            var contentHeight =$("#content").outerHeight();
            var textHeight = $("#text").outerHeight();
            var leftHeight = $("#subnav").outerHeight()+$("#sujet").outerHeight()+165;
            var diff = windowHeight-contentHeight-195-93-40;
            var diff2 = windowHeight-textHeight-195-93-40;
            var diff3 = windowHeight-leftHeight-93-20;
            if(diff3 < 50) return false;
            if(diff > 0)
            {
                $("#content").css('height', $("#content").height()+diff);
            }            
            if(diff <= 0 )
            {
                
                if (diff2 > 30)
                    $("#content").css('height', $("#content").height()+diff);
                else return false;
            }
            });

        // IE9 crazy-scroll-workaround
        if ($.browser.msie && $.browser.version.indexOf('9') == 0 && $('body').width() > 999) {
            $('body').css({'overflow-x':'hidden'});
        } else {
            $('body').css({'overflow-x':'visible'});
        }

    });

