	$(document).ready(function()
{
	$('.text').hide();
	
	$('#pulldown h3').toggle(
		function() {
			$(this).next('.text').show();
		},
		function() {
			$(this).next('.text').hide();
		}
	);
});
