//When the DOM tree is loaded
$(document).ready(function() {

    // This section if for the home page
    $("#readmorehome").hide();
  
     $(".showread").click(function() {
     $("#readmorehome").show(500);
      return false;
    });
    
    $(".hideread").click(function() {
    $("#readmorehome").hide(500);
      return false;
    });
});

