$(document).ready(function() {
    
	$('#support').hide();
    
    $('#support p:first-child').after('<p><strong><a id="what" href="">What are the benefits of supporting?</a></strong></p>'); 

	$('#what').bind('click', function(event) {
		$('#support').fadeOut();   
		$('#benefits').fadeIn();
		return false;
	});

	$('#benefits ul').after('<p><strong><a id="who" href="">Who are the Supporters?</a></strong></p>'); 
	
	$('#who').bind('click', function(event) {
		$('#support').fadeIn();   
		$('#benefits').fadeOut();
		return false;  
	});

 	$('#content-list').find('dd').hide()
	
	$('#content-list').addClass('enhanced');
	$('#content-list').find('dt').wrapInner('<a href="" class="switch"></a>');
	
	//$('.about-us #content-list dt:first').addClass('open');
	//$('.about-us #content-list dd:first').show(); 
 
	$('#content-list').find('dd').end().find('dt').click(function() {
        
 		var question = $(this);
		var answer = $(this).next();
        
		if (answer.is(':visible')) {
			question.removeClass("open");   
			answer.slideUp('slow');
         } else {
			question.addClass("open");   
            answer.slideDown('slow');
         }
	   	 return false; 
     });
	
	
});