$(document).ready(function()
{
    $('a.lightbox').fancybox(
    {
        overlayColor: '#000',
        centerOnScroll: true,
        titlePosition: 'inside',
        transitionIn: 'elastic',
        transitionOut: 'elastic'
    });
    
    $('a.popup-social').popupWindow(
    { 
        width           : 500,
        height          : 400, 
        centerBrowser   : 1 
    }); 

    $('#nav-main .level_1 li').dropdown('.dropdown', 100);
    
    $('#slideshow ul.view').Teaser({overview: "#slideshow ul.preview", timeout: 6000, speed: 1000});
    
    $('#teaser .teaser-box').mouseover(function()
    {
       $(this).children('.content').stop().animate({top: "-88px"}, 500) 
    }
    ).mouseout(function()
    {
       $(this).children('.content').stop().animate({top: 0}, 500) 
    });

    $('ul.reference-list.grid li').mouseover(function()
    {
        var container = $(this).children('a').children('.image-container');
        var lupe      = container.children('img.lupe');
     
        //lupe.css('opacity', 0);
        lupe.show();
        lupe.stop().animate({opacity: 1}, 250);   
        container.children('img.image').stop().animate({opacity: 0.4}, 250);    
        
    }).mouseout(function()
    {
        var container = $(this).children('a').children('.image-container');
        var lupe      = container.children('img.lupe');
        
        //lupe.stop().fadeOut();
        lupe.stop().animate({opacity: 0}, 250);
        container.children('img.image').stop().animate({opacity: 1}, 250);    
    });
});
