/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function SwitchMenu(id){
	if ($("#"+id).css("display") != "block")
		$("#"+id).css("display", "block");
	else
		$("#"+id).css("display", "none");
}
