// Jquery SlideToggle

// initialize the jquery code

 $(document).ready(function(){

//close all the content divs on page load

//$('#form-richieste-outer').hide();



// regular toggle with speed of 'slow'

$('#toggleSlow').click(function(){

$(this).siblings('#form-richieste-outer').toggle('slow');

});

});
