var i=0;
var mn=new Array();
mn[i++]=new menu(1,2,0,"Home", "home.htm");
mn[i++]=new menu(2,2,0,"Kanzlei und Standort", "kanzlei.htm");
mn[i++]=new menu(4,2,0,"T&auml;tigkeitsgebiet<br />RA Dr. Frohberg", "frohberg.htm");
mn[i++]=new menu(5,2,0,"Information zu den Fachgebieten","information2.htm");
	mn[i++]=new menu(51,3,5,"Erbrecht", "information2.htm");
	mn[i++]=new menu(50,3,5,"Scheidungsrecht", "information1.htm");
mn[i++]=new menu(6,2,0,"Kontakt","kontakt.htm");
mn[i++]=new menu(8,2,0,"Download","download.htm");
mn[i++]=new menu(7,2,0,"Links", "links.htm");
mn[i++]=new menu(9,2,0,"Impressum<br />Datenschutz", "impressum.htm");

function menu (menuID, type, parentID, caption, link) {
	this.menuID=menuID;
	this.type=type;
	this.parentID=parentID;
	this.caption=caption;
	this.link=link;
}


