$(document).ready(function() 
 {
 	//$('.moreinfo').show();
 	   
   $('.readmoreAuto').click(function () {
      if ($('.moreauto').is(':hidden'))
      {
      	$('.moreauto').slideDown();
      	$('.readmoreAuto').html('Read less Automotive graduate testimonials...');
      } 
      else 
      {
      	$('.moreauto').slideUp();
      	$('.readmoreAuto').html('Read more Automotive graduate testimonials...');
      }
    });
    
   $('.readmoreCadd').click(function () {
      if ($('.morecadd').is(':hidden'))
      {
      	$('.morecadd').slideDown();
      	$('.readmoreCadd').html('Read less CADD graduate testimonials...');
      } 
      else 
      {
      	$('.morecadd').slideUp();
      	$('.readmoreCadd').html('Read more CADD graduate testimonials...');
      }
    });
 
    $('.readmoreComp').click(function () {
      if ($('.morecomp').is(':hidden'))
      {
      	$('.morecomp').slideDown();
      	$('.readmoreComp').html('Read less Computer and Network graduate testimonials...');
      } 
      else 
      {
      	$('.morecomp').slideUp();
      	$('.readmoreComp').html('Read more Computer and Network graduate testimonials...');
      }
    });

   $('.readmoreHvac').click(function () {
      if ($('.morehvac').is(':hidden'))
      {
      	$('.morehvac').slideDown();
      	$('.readmoreHvac').html('Read less HVAC-R graduate testimonials...');
      } 
      else 
      {
      	$('.morehvac').slideUp();
      	$('.readmoreHvac').html('Read more HVAC-R graduate testimonials...');
      }
    });

   $('.readmoreMa').click(function () {
      if ($('.morema').is(':hidden'))
      {
      	$('.morema').slideDown();
      	$('.readmoreMa').html('Read less Medical Assisting graduate testimonials...');
      } 
      else 
      {
      	$('.morema').slideUp();
      	$('.readmoreMa').html('Read more Medical Assisting graduate testimonials...');
      }
    });
   $('.readmorePn').click(function () {
      if ($('.morepn').is(':hidden'))
      {
      	$('.morepn').slideDown();
      	$('.readmorePn').html('Read less Practical Nursing graduate testimonials...');
      } 
      else 
      {
      	$('.morepn').slideUp();
      	$('.readmorePn').html('Read more Practical Nursing graduate testimonials...');
      }
    });
});

