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

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

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

    $('.roundimage').corner();

    $('#menu .mItem').hover(function() {
      $(this).children('.mSubBox').slideDown();
    }, function() {
      $(this).children('.mSubBox').stop(true, true).slideUp();
    });
  });
