$(function(){
	$('.slider').hide();
	$('h3:first').before('<p>Please select a link below to find out more about us and the services we offer.</p>');
	$('h3').each(function(){
		$(this).wrapInner('<a href="#"></a>');
	});
	$('h3 a').css('color', '#834049');
	$('h3').click(function(){
		if ($(this).next('div.slider').css('display') == 'none') {
			$(this).next('div.slider').slideDown('slow');
		} else {
			$(this).next('div.slider').slideUp('slow');
		}
		return false;
	});
});