$(function(){
  $('#header-img').cycle({
    fx: 'scrollLeft',
    speed: 600,
    timeout: 4000,
    delay: 6000
  });
  
  $('.block').not('.block:first').find('h3:first').append('<a href="#" class="showme">read more</a>').end().children().not('h3').hide();
  
  $('a.showme').toggle(function() {
    $(this).text('read less').parents('.block').children().show(300);
  },function(){
    $(this).text('read more').parents('.block').children().not('h3').hide(300);
  });
});