$('document').ready(function(){
    $('.loginEventsLink').hover(
        function(){ $('.loginEventsLink img').attr('src', '/img/layout/eventPfeilOver.png');},
        function(){ $('.loginEventsLink img').attr('src', '/img/layout/eventPfeil.png');}
    );

    $("a.eventGalerie").attr('rel', 'group1');
    $("a.eventGalerie").fancybox({
        'transitionIn'	:	'elastic',
        'transitionOut'	:	'elastic',
        'speedIn'       :	600,
        'speedOut'	:	200,
        'overlayShow'	:	true
    });
});




