$(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: '#fcbb75',
        closeOnClick: false,
        close: '#closeAsk'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });

    $("button#ask2[rel]").overlay({
        expose: '#fcbb75',
        closeOnClick: false,
        close: '#closeAsk'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });

    $("button#marktplatz[rel]").overlay({
        expose: '#fcbb75',
        closeOnClick: false,
        close: '#closemarktplatz'
        // evaluating output: http://flowplayer.org/tools/demos/overlay/modal-dialog.html
    });
    
    // Lightbox Call
    $('.gallery a.thumb').overlay({
        target: '#slideshow',
        expose: '#fcbb75'

    }).gallery({
        speed: 800
    });

	// $('#splash').hide();

	// console.log(document.location.href.indexOf('efault.aspx') > -1)
	// var api = $("#splash").overlay({expose: '#fcbb75', api: true}); 
	// api.load();

});  //jQuery
