$(document).ready(function() {
	var collapse = true;
  $('a.expand-post-button').click(function() {
	  if (collapse == true) {
	  	collapse = false;
	  	$(this).html('Inklappen');
	  	$(this).closest('.post-footer').prev().css('max-height','none');
	  	$(this).parent().css('background', 'url("/images/collapse.png") no-repeat');
	  }
	  else {
	  	collapse = true;
	  	$(this).html('Volledige post');
	  	$(this).closest('.post-footer').prev().css('max-height','100px');
	  	$(this).parent().css('background', 'url("/images/expand.png") no-repeat');	  	
	  }
  	return false;
  });
});
