var item=new Array(
	new itemob('',''),
	new itemob('Darf&lsquo;s noch gr&ouml;&szlig;er sein?','freddy_groesser'),
	new itemob('Wei&szlig;e Vampire und ein schwarzer Engel','freddy')
);

function itemob(name,url)
{
	this.name=name;
	this.url=url;
}

function menuwrite()
{
	document.open('text/html');
	document.write('<SELECT name="auswahl" onchange="sprung()">');
	document.write('<OPTION selected value="">');
	document.write('w&auml;hlen Sie eine Seite</option>');
	for (i=1; i<item.length; i++)
	{
	 document.write('<OPTION value="">');
	 document.write(item[i].name);
	 document.write('</option>');
	}
	document.write('</select>');
	document.close();

}

function sprung()
{
	if (document['menu'].auswahl.selectedIndex!=0) location.href=item[document['menu'].auswahl.selectedIndex].url+".html";
}

