$(document).ready(function(){

		//hide all section
		$('div.section').hide();

		// toggle sections
		$('a.section').toggle(function(){
			var section = $(this).parent().next('div.section');
			section.fadeIn();
		}, function(){
			$(this).parent().next().fadeOut();
		});

});