$(document).ready(function() {
    // Klicken macht auf
    $('div.gallery-thumbnail-container div.teaser').click(function() {
        if (link = $("a:first", $(this).parent()))
            window.location.href = link.attr('href');
    });
       
    // slideUp/Down animation
    $('div.grid').mouseleave(function() {
        $("div.teaser").stop();
        $("div.teaser").slideUp(0, function() {});
        $("div.teaser").clearQueue('meine');
        $("div.teaser").css('height', '0px');
    });
    
    $('div.gallery-thumbnail-container').mouseenter(function() {
        $("div.teaser").stop();
        $("div.teaser").css('display', 'none');
        $("div.teaser").css('height', '64px');
        $("div.teaser").slideUp(0, function() {});
        $("div.teaser").clearQueue('meine');
        $("div.teaser", this).slideDown("slow", function() {}).delay(500, 'meine');
    });

    $('div.gallery-thumbnail-container').mouseleave(function() {
        $("div.teaser", this).slideUp(200, function() {});
    });
});

