function menuDropDown( par) {		

	var nxt = par.nextSibling; 

	while( nxt != null && nxt.className != "box-body" ) nxt = nxt.nextSibling;

	

	if( nxt.className == "box-body" ) {



		if( nxt.style.display == "none" || nxt.style.display == "")  {

			nxt.style.display = "block";

		} else {

			nxt.style.display = "none";

		}

	} 

}

/*elso menu itemhez*/

function menuDropDown1(par) {		

	var nxt = par.nextSibling;

	while( nxt != null && nxt.className != "box-body1" ) nxt = nxt.nextSibling;

	

	if( nxt.className == "box-body1" ) {



		if( nxt.style.display == "block" || nxt.style.display == "")  {

			nxt.style.display = "none";

		} else {

			nxt.style.display = "block";

		}

	} 

}



