/*

JSMENU von Michael Lambertz
(c) 2006 Michael Lambertz
e-mail: michaellambertz@gmx.net

*/

var isactive = 0;

function change(was, hoehe)
	{
	target = was; //document.getElementById(was);
	if (isactive)
		{
		target.style.height = '2.0em';
		isactive = 0;
		}
	else
		{
		target.style.height = hoehe;
		isactive = 1;
		}
	}
