//-------------------------------------------------------------------------------------------------
// G3W - Sistema de Franquias
// http://g3w.com.br
// 2009-10
//-------------------------------------------------------------------------------------------------

$(document).ready(function () {
	$('ol.questions li span').click(function ()  {
		$(this).parent().children('p, ol, ul').toggle('slow');
	})
});