//Script per FAQ
$(document).ready(function() {
	$('div.domanda, img.tastorisp').click(function() {
		//var id = $(this).attr("id").replace('domanda', '');
		var id = $(this).attr("id").replace(/(domanda|tastorisp)/, '');
		$('#risposta' + id).slideToggle('fast');
	});
});