	<!--
	  var yPosition = 3;
	  var xPosition = 15;

	  //new ypSlideOutMenu("number menu", "slide position", left, top, width, height)
		new ypSlideOutMenu("menu1", "left", xPosition, yPosition, 81, 90)
		new ypSlideOutMenu("menu2", "left", xPosition, yPosition+28, 81, 90)
		new ypSlideOutMenu("menu3", "left", xPosition, yPosition+112, 81, 90)
		new ypSlideOutMenu("menu4", "left", xPosition, yPosition+140, 81, 90)
		new ypSlideOutMenu("menu5", "left", xPosition, yPosition+168, 81, 90)
		//new ypSlideOutMenu("menu6", "left", xPosition, yPosition+150, 106, 20)
		//new ypSlideOutMenu("menu7", "left", xPosition, yPosition+180, 96, 20)
	//-->

	
	function toggle(id) {
	var elem = document.getElementById(id);
	if(elem.className == 'item')
	elem.className = 'active'; //you may use 'block' if not applying to a tbody tag
	else
	elem.className = 'item';
}
	