// JavaScript Document
$(function() {

	$('#what-we-do p a.readmore').live('click', function(){
	
		if($(this).html()  == '&gt; Read more')
			$(this).html('Close');
		else
			$(this).html('&gt; Read more');
		
		$(this).parent().next('p').slideToggle('fast', function(){	
				
		});
		
		return false;		
		
	});

});
