
  $(document).ready(function() {
    $('.lightbox').lightBox({txtImage:'Foto',txtOf:'v/d'});

    $('#menu .mFl').hover(function() {
      $(this).children('img').attr('src', $(this).children('img').attr('src').replace('_i.jpg', '_a.jpg'));
    }, function() {
      $(this).children('img').attr('src', $(this).children('img').attr('src').replace('_a.jpg', '_i.jpg'));
    });

    $('.click_goto_a').click(function() {
      document.location = $(this).find('a:first').attr('href');
    });

    $('.product').hover(function() {
      $(this).removeClass("product").addClass("product_over");
      $('.product').css({opacity:0.5});
    }, function() {
      $('.product').css({opacity:1});
      $(this).removeClass("product_over").addClass("product");
    });
    
    $('#thumbs img').hover(function() {
      $('#fotoBig img').attr('src', $(this).attr('src').replace('_thumb2', '_thumb1'));
      $('#fotoBig a').attr('href', $(this).attr('src').replace('_thumb2', ''));
    }, function() {
      
    });
  });
