// JavaScript Document
$(document).ready(function(){

$(".readMoreSection").hide();

$('.showReadMore').toggle(function() {

 
$('.readMoreSection').slideDown("fast");
}, function() {

 $('.readMoreSection').slideUp("fast");
});

});
