$(document).ready(function(){
  
    $(function(){
      	$('#primary div.project_thumb').hover(function(){
      		$(this).find('img').fadeOut();
      	}, function(){
      		$(this).find('img').fadeIn();
      	});
    });  

    
});