jQuery.noConflict(); 

jQuery(document).ready(function()
{
//hide the all of the element with class msg_body
jQuery(".tools_body").hide();
//toggle the componenet with class msg_body
jQuery("h3.tools_head").click(function()
{
// $('div.msg_body').slideUp("slow");
jQuery(this).next(".tools_body").slideToggle(300);

});
});


/* Vecchio codice
$(document).ready(function()
{
//hide the all of the element with class msg_body
$("div.tools_body").hide();
//toggle the componenet with class msg_body
$("h3.tools_head").click(function()
{
// $('div.msg_body').slideUp("slow");
$(this).next("div.tools_body").slideToggle(300);

});
});


*/




/*
window.addEvent('domready', function() {
	

	var myVerticalSlide = new Fx.Slide('vertical_slide', 
	{
		//Fx.Slide Options
		mode: 'vertical', //default is 'vertical'
 
		//Fx Options
		//notice how chaining lets you click multiple time 
		//then mouse away and the effects will keep going
		//for every click
		link: 'chain', 
		
		//Fx Events
		onStart: function(){
			$('start').hide();
		},

		
	}).hide();

	
	$('v_toggle').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
	});

	// myVerticalSlide.slideOut();
	//myVerticalSlide.hide();
	
});

*/
