$(document).ready(function() {
$('body').removeClass('no-js'); // make sure stuff works without JS...

// do stuff

$('#access a').last().addClass('last-child');
	 				
$('.block:eq(1)').find('a:first').addClass('donate');

$('.block:eq(1)').find('p:first').addClass('first');	 				 				
	 				
$('#meteor-slideshow').append($('#learn-more'));

$('#secondary aside:eq(0)').find('a:first').addClass('donate');

$('.page-id-38').find('.entry-content').append('<strong id="super">Parks are a valuable community asset</strong>');	 	

maxHeight = 0;
$('.block').each(function(index) {
	thisHeight = $(this).height()
    if (thisHeight > maxHeight) maxHeight = thisHeight;
  });
$('.block').each(function(index) {
	$(this).height(maxHeight);
    
  });

	 				
});
    

