$(document).ready(function(){
	$('.expandable').hide();
	$('.expand').click(function(event){
		$(event.target).parent().next('.expandable').toggle();
		$(event.target).toggleClass('expand-close');
	});
});