$(document).ready(function() {

	$(".hidden").after('<a href="#" class="jqueryButton">+ Expand</a>');

	$(".jqueryButton").click(function(e){
		e.preventDefault();
		
		$(this).prev().animate({
			opacity:'toggle',
			height:'toggle'
			},500);
		
		if( $(this).html() == "+ Expand" ) { $(this).html('- Contract'); }
		else if( $(this).html() == "- Contract" ) { $(this).html('+ Expand'); }
	});
	
	$(".jqueryButtonAll").click(function(e){
		
		e.preventDefault();
		
		if( $(this).html() == "+ Expand All" ) {
			$(".hidden").css('display', 'block');
			$(this).html('- Contract All');
			$(".jqueryButton").html('- Contract');
		}
		else if( $(this).html() == "- Contract All" ) {
			$(".hidden").css('display', 'none');
			$(this).html('+ Expand All');
			$(".jqueryButton").html('+ Expand');
		}
		
	});

});
	
