jQuery(document).ready(function() 
 {
 	//$('.moreinfo').show();
 	   
   jQuery('.readmoreCJ').click(function () {
      if (jQuery('.moreCJ').is(':hidden'))
      {
      	jQuery('.moreCJ').slideDown();
      	jQuery('.readmoreCJ').html('Read less of this testimonial');
      } 
      else 
      {
      	jQuery('.moreCJ').slideUp();
      	jQuery('.readmoreCJ').html('Read more of this testimonial');
      }
    });
    
   jQuery('.readmoreDW').click(function () {
      if (jQuery('.moreDW').is(':hidden'))
      {
      	jQuery('.moreDW').slideDown();
      	jQuery('.readmoreDW').html('Read less of this testimonial');
      } 
      else 
      {
      	jQuery('.moreDW').slideUp();
      	jQuery('.readmoreDW').html('Read more of this testimonial');
      }
    });
    
   jQuery('.readmoreJH').click(function () {
      if (jQuery('.moreJH').is(':hidden'))
      {
      	jQuery('.moreJH').slideDown();
      	jQuery('.readmoreJH').html('Read less of this testimonial');
      } 
      else 
      {
      	jQuery('.moreJH').slideUp();
      	jQuery('.readmoreJH').html('Read more of this testimonial');
      }
    });


    jQuery('.movie7').click(function () {
    
    	jQuery('.movies').hide();
	    jQuery('#movie7').show();
    
    });


});
