$(document).ready(function(){
	$(".offer").html('<img src="http://www.2good2tip.com/images/layout/btn-more-info.gif" width="85" height="21" alt="More information" />');
	//hide the all of the element with class hidden
  $(".hidden").hide();

  $(".offer").click(function()
  {
    $(this).nextAll(".morecontent").slideToggle(800);
	//$(this).html(' <a href="#" class="toggleLink">'+showText+'</a>');
  });  

}); //close $(