$(function(){
  //$('#brand').pngFix();
  $('.closeBox').click(function(){
      $('#boxFotoGrande').fadeOut('fast',function(){
          $('.transparency').fadeOut('fast');
      });
      $('#fotoGrande').attr('src','');
      return false;
  });
  $('.fotopequena').click(function(){
    var legenda = $(this).attr('title');
    var img = $(this).attr('src');
    img = img.split('.');
    img = img[0] + 'grande.' + img[1];
    $('#fotoGrande').attr('src',img);
    $('#fotoGrandeLegenda').html(legenda);
    $('.transparency').fadeIn('normal',function(){
        $('#boxFotoGrande').fadeIn('slow');
    });
    return false;
  })
  $('a.novajanela').each(function(){
      $(this).attr('target','_blank');
  });
})