$(document).ready(function() {
  
  $('.thumbImage').css('opacity','0.4');
  
  $('.thumbImage').hover(function() {
    
    $(this).css('opacity','1.0');
    
    $('#projectinfo_' + $(this).attr('rel')).show();
    
  }, function() {
    
    $(this).css('opacity','0.4');
    
    $('#projectinfo_' + $(this).attr('rel')).hide();
    
  });
  
  
});
