$(document).ready(function(){
	
	$('.arrangementContainer .moreOpen').click(function() {

		$(this).parent().fadeOut();
		$(this).parent().prev('.arrDetails').slideDown('slow', function() {
		    // Animation complete.
		  });

	});
	
	$('.arrangementContainer .moreClose').click(function() {

		
			
			$(this).parent().slideUp('slow', function() {
			    // Animation complete.
				
			});
			$(this).parent().next('.arrToggler').fadeIn();
		});
 });

