function makemenu(menupoint, path)
{//flexibler Menügenerator --> Menüreihenfolge & Bilderlinks für alle Seiten hier ändern
	var m_point = new Array();
	var m_mouseover = new Array();
	var m_button = new Array();
	var m_link = new Array();
	var i = 0; var apos = "'";

	m_point[i++]= "Die Goldschmiede";					m_link[i] = path + "index.html";								m_button[i] = path + "Die_Goldschmiede_N.gif"; 	m_mouseover[i] = path + "Die_Goldschmiede_NR.gif";
	m_point[i++]= "Ringe";								m_link[i] = path + "Ringe/ringe.html";							m_button[i] = path + "Ringe_N.gif"; 			m_mouseover[i] = path + "Ringe_NR.gif";
	m_point[i++]= "Brillantringe";						m_link[i] = path + "Brillantringe/brillantringe.html";			m_button[i] = path + "Brillantringe_N.gif"; 	m_mouseover[i] = path + "Brillantringe_NR.gif";
	m_point[i++]= "Perlringe";							m_link[i] = path + "Perlringe/perlringe.html"; 					m_button[i] = path + "Perlringe_N.gif"; 		m_mouseover[i] = path + "Perlringe_NR.gif";
	m_point[i++]= "Trauringe";							m_link[i] = path + "Trauringe/trauringe.html";					m_button[i] = path + "Trauringe_N.gif"; 		m_mouseover[i] = path + "Trauringe_NR.gif";
	m_point[i++]= "Schmuck";							m_link[i] = path + "Schmuck/schmuck.html"; 						m_button[i] = path + "Schmuck_N.gif"; 			m_mouseover[i] = path + "Schmuck_NR.gif";
	m_point[i++]= "Ohrschmuck";							m_link[i] = path + "Ohrschmuck/ohrschmuck.html"; 				m_button[i] = path + "Ohrschmuck_N.gif"; 		m_mouseover[i] = path + "Ohrschmuck_NR.gif";
	m_point[i++]= "Opalschmuck";						m_link[i] = path + "Opalschmuck/opalschmuck.html"; 				m_button[i] = path + "Opalschmuck_N.gif"; 		m_mouseover[i] = path + "Opalschmuck_NR.gif"; 	
	m_point[i++]= "Für Ihn";							m_link[i] = path + "Fur_Ihn/fur_ihn.html"; 						m_button[i] = path + "Fur_Ihn_N.gif"; 			m_mouseover[i] = path + "Fur_Ihn_NR.gif";
	m_point[i++]= "Specials";							m_link[i] = path + "Specials/specials.html"; 					m_button[i] = path + "Specials_N.gif"; 			m_mouseover[i] = path + "Specials_NR.gif"; 
	m_point[i++]= "Personality";						m_link[i] = path + "Personality/personality.html"; 				m_button[i] = path + "Personality_N.gif";		m_mouseover[i] = path + "Personality_NR.gif";
	m_point[i++]= "Impressum";							m_link[i] = path + "Impressum/impressum.html"; 					m_button[i] = path + "Impressum_N.gif"; 		m_mouseover[i] = path + "Impressum_NR.gif"; 
	m_point[i++]= 'Datenschutz" WIDTH=136 HEIGHT=15';	m_link[i] = path + "Impressum/datenschutz.html"; 				m_button[i] = path + "Datenschutz_N.gif"; 		m_mouseover[i] = path + "Datenschutz_NR.gif";
	m_point[i++]= "";									m_link[i] = path + "Specials/Easteregg/Easter.egg.html";	 	m_button[i] = path + "Blank.gif";				m_mouseover[i] = path + "Blank.gif";
	m_point[i++]= 'Ausstellungen" WIDTH=136 HEIGHT=16';	m_link[i] = path + "Ausstellungen/ausstellungen.html"; 			m_button[i] = path + "Ausstellungen_N.gif"; 	m_mouseover[i] = path + "Ausstellungen_NR.gif"; 

	document.write('<DIV ID="Navigationsleiste"><TABLE ID="Navigationsleiste" CELLSPACING=0 CELLPADDING=-2>');
	for (i = 1; i < m_point.length+1; i++){
	if (menupoint.test(m_button[i])) {m_button[i]=m_button[i].replace(/_N/, "_H"); m_mouseover[i]=m_mouseover[i].replace(/_NR/, "_HR");} // Setze dunkle Markierung für aktuellen Menüpunkt
	document.write('<TR><TD><A HREF="'+m_link[i]+'"><img name="button'+i+'" src="'+m_button[i]+'" onMouseOver="button'+i+'.src='+apos+m_mouseover[i]+apos+'" onMouseOut="button'+i+'.src='+apos+m_button[i]+apos+'" border=0 ALT="'+m_point[i-1]+'"></A></TD></TR>');}
	document.write('</TABLE></DIV>');
}
