$(document).ready(function() {
 // hides the hometxt as soon as the DOM is ready
  $('#hometxt').hide();
 // toggles the hometxt on clicking the noted link
  $('#readmorelnk').click(function() {
 $('#hometxt').slideToggle();
 return false;
  });
});

// shows the hometxt DIV on clicking the link with an ID of "slick-show"
  $('#readmorelnk').click(function() {
 $('#hometxt').show('fast');
 return false;
  });
