$(document).ready(function () {

    $('#navigation li').hover(function () {
        $(this).children('ul:first').hide(); // Remove fallback
        $(this).children('ul:first').stop().height('auto').css('overflow', 'visible').slideDown(150);
    }, function () {
        $(this).children('ul:first').stop().slideUp(50);
    });

    // Remove fallback
    $('button#ask').show();
    $('#askQuestion').css({ 'width': '400px' }).hide();


    // Modal Call
    $("button#ask[rel]").overlay({
        expose: '#31579e',
        closeOnClick: false,
        close: '#closeAsk'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });

    $("button#ask2[rel]").overlay({
        expose: '#31579e',
        closeOnClick: false,
        close: '#closeAsk'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });

    $("button#marktplatz[rel]").overlay({
        expose: '#31579e',
        closeOnClick: false,
        close: '#closemarktplatz'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });

    // Lightbox Call
    $('.gallery a.thumb').overlay({
        target: '#slideshow',
        expose: '#31579e'

    }).gallery({
        speed: 800
    });

    $('.cycle').cycle({
        fx: 'fade',
        speed:2000
    });

    $('#form3dak').submit(function() {
        $("#recap").val('assigned');
    });


});   //jQuery





