$(document).ready(function(){

    $('.logo')
    .mouseover(function(){
        $(this).find('.tooltip').css('display','block');
    })
    .mouseout(function(){
        $(this).find('.tooltip').css('display','none');    
    });
        
    $('td.thumbnail').each(function(){    
        $(this).find('a[rel^="lightbox"]').lightBox({
            overlayBgColor: '#004E69',
            overlayOpacity: 0.8,
            containerBorderColor: '#004E69',
            imageLoading:  '/assets/templates/sart.ch/images/loading.gif',
            imageBtnClose: '/assets/templates/sart.ch/images/close.gif',
            imageBtnPrev:  '/assets/templates/sart.ch/images/prev.png',
            imageBtnNext:  '/assets/templates/sart.ch/images/next.png',
            txtImage:      'Bild',
            txtOf:	       'von'
            });
    });
    
});

