$(function(){
  $('ul.projects li').each(function(){
    var img = $(this).find('img');
    $(this).mouseover(function(){
      $(this).addClass('dark');
      $(this).find('.hover').css({ width: img.attr('width')-8, height: img.attr('height')-8, display: 'block' });
    });
    $(this).mouseout(function(){
      $(this).removeClass('dark');
      $(this).find('.hover').css({ display: 'none' });
    });
    $(this).click(function(){
      document.href = $(this).find('a').attr('href')
    });
  });
  
  
});
