﻿window.onload = function () {
    $('#menu');
};

$(function () {
    $('#aktuality #contents-aktuality p a img').animate({
        "opacity": 1
    });

    $('#aktuality #contents-aktuality p a img').hover(function () {
        $(this).stop().animate({ "opacity": .5 });
    }, function () {
        $(this).stop().animate({ "opacity": 1 });
    });
});

$(function () {
    $('#contents-aktuality a').lightBox();
});


$(function () {
    $('#gallery a img').animate({
        "opacity": 1
    });
    
    $('#gallery a img').hover(function () {
        $(this).stop().animate({ "opacity": .5 });
    }, function () {
        $(this).stop().animate({ "opacity": 1 });
    });
});

$(function () {
    $('#gallery a').lightBox();
});


$(function () {
    $('.gallery a img').animate({
        "opacity": 1
    });

    $('.gallery a img').hover(function () {
        $(this).stop().animate({ "opacity": .5 });
    }, function () {
        $(this).stop().animate({ "opacity": 1 });
    });
});

$(function () {
    $('.gallery a').lightBox();
});   
