$(document).ready(function() {
       $("#recent_work .summary").mouseover(function(){
           $(this).css({'background-color' : '#def0ee'});
       }).mouseout(function(){
           $(this).css({'background-color' : 'white'});
       });
       

       
       $("#follow_me, #subscribe").mouseover(function(){
           $(this).css({'background-color' : '#def0ee'});
           $(this).find(".illustration").addClass("illustration-hover");
       }).mouseout(function(){
           $(this).css({'background-color' : 'white'});
           $(this).find(".illustration").removeClass("illustration-hover");
       });
       
       $("#recent_work .main_image").mouseover(function(){
           $("#recent_work .summary").css({'background-color' : '#def0ee'});
       }).mouseout(function(){
           $("#recent_work .summary").css({'background-color' : 'white'});
       });
       
       $(".slimline_portfolio").mouseover(function(){
              $(this).find(".overlay").show();
              $(this).find(".num_comments").css({'background-color' : '#E0C810'});
          }).mouseout(function(){
              $(this).find(".overlay").hide();
              $(this).find(".num_comments").css({'background-color' : 'white'});
          });
          
        $(".wpcf7-response-output").fadeOut(6000);

   });