// JavaScript Document
$(document).ready(function(){	
    $(".project-tumbnail").hover(
      function () {
        $(this).addClass("hint-active");
      },
      function () {
        $(this).removeClass("hint-active");
      } 
    );    
});       

