$(document).ready(function(){

    function gotInside() {
        $(this).css({'background-color': '#E6F3F7',
                     'cursor': 'pointer'});
    };
    function gotOutside() {
        $(this).css({'background-color': '#FFF',
                     'cursor': 'default'});
    };
      
    $('div.imagehold').hover(gotInside, gotOutside).click(function() {
          document.location.href = '/objekte/'+$(this.getElementsByTagName('img')).attr('alt');
      });

    $('tr:gt(0)').hover(gotInside, gotOutside).click(function() {
          document.location.href = $(this).find('a').attr('href');
      });
});

