<!--
$(document).ready( function () { 
//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane p.menu_head").mousedown(function()
	{
	   $(this).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp(500);
	});
} ) ; 
// -->
