$(document).ready(function() {

	$("ol.help .qa").hide();
	
	$("ol.help li span").click(function(){
	$(this).next(".qa").slideToggle(500)
	return false;
		});


});

