$(document).ready(function() {

	$('div.a').hide(); 
	$('div.q').toggle(
		function () {
			$(this).next().toggle(150);
			$('.status', $(this)).text('-');
		},
		function () {
			$(this).next().toggle(150);
			$('.status', $(this)).text('+');
		}
	);

});