$(document).ready(function() {

  // simple example, using all default options
  $('div.expandable').expander();
  
    $("#readMore").click(function(){
	
	$('html, body').delay(60).animate({
scrollTop: $(".expandable").offset().top
}, 800);
	
  });
  
  
});


