
  $(document).ready(function() {
    //$('.colImg a').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");
    });
    
  });
/*
  function arrowLeft( evt ) {
    alert('home');
    if(document.getElementById('imgPrev')) {
      document.location=document.getElementById('imgPrev').href;
    }
    cancelEvent( evt );
  }
*/
