jQuery(function($){
  $('#portfolio .projeto .description').hide();
  
  $('#portfolio .projeto').hover(function(){
    $(this).addClass('active');
    $(this).find('.description').stop(true, true).fadeTo(0, 0.8);
  }, function(){
    el = $(this);
    $(this).find('.description').stop(true, true).fadeOut(0, function(){
      el.removeClass('active');
    });
  });
  
  $('#portfolio .projeto .description').click(function(){
    window.open($(this).parent().find('a').attr('href'));
  });
});
