$(function() {//doc.ready function
   $('#imagea').hover(function() { //selects the picture to be hovered over
       $('.testimonial1').css('display','block'); // changes ccs on the testimonial class
      }, function() { // hover out fuction
         $('.testimonial1').css('display','none');
      });

   $('#imageb').hover(function() { //selects the picture to be hovered over
       $('.testimonial2').css('display','block'); // changes ccs on the testimonial class
      }, function() { // hover out fuction
         $('.testimonial2').css('display','none');
      });


   $('#imagec').hover(function() { //selects the picture to be hovered over
       $('.testimonial3').css('display','block'); // changes ccs on the testimonial class
      }, function() { // hover out fuction
         $('.testimonial3').css('display','none');
      });


   $('#imaged').hover(function() { //selects the picture to be hovered over
       $('.testimonial4').css('display','block'); // changes ccs on the testimonial class
      }, function() { // hover out fuction
         $('.testimonial4').css('display','none');
      });


});// closes doc.ready function.




