jQuery(document).ready(function($) {
	$('#help .question').click(function() {
		if(!$(this).next().is(':visible')) {
			$(this).next().slideDown();
			$(this).find('span').html('&darr;');
		} else {
			$(this).next().slideUp();
			$(this).find('span').html('&rarr;');
		}	
	})});

	
	


