$('.expandMe').click(function() {
	if ($('#' + this.title).is(":hidden")) {
      $('#' + this.title).slideDown("slow");
      $(this).html('&laquo; less');
    } else {
      $('#' + this.title).slideUp("slow");
      $(this).html('more &raquo;');
    }
});
