/*$(document).ready(initMenu);
function initMenu()
{
	$('#menu ul').hide();
	$('#menu li a').click(function()
	{
		$(this).next().slideToggle('normal');
		return false;
	});
  };*/
  
$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane h5.menu_head").click(function()
	{
		$(this).next("div.menu_body").slideToggle("normal").siblings("div.menu_body").slideUp("slow");
	});
});

function setColor(element)
{
	document.getElementById(element).style.backgroundColor='#e9e9e9';
	document.getElementById(element).style.color='#1E4B78';
}

function resetColor(element)
{
	document.getElementById(element).style.backgroundColor='#f2f2f2';
	document.getElementById(element).style.color='#777777';
}
