function tabs( active )
{
	var tabs_list = new Array('Start','Über mich','Reparatur','Verkauf','Impressum');
	var tabs_urls = new Array('index.html','ueber_mich.html','reparatur.html','verkauf.html','impressum.html');

	for (i=1; i<=tabs_list.length; i++)
	{
		document.write('<div class="');
		if (active.indexOf(tabs_urls[i-1]) != -1)
			document.write('active');
		else
			document.write('inactive');
		document.write('" style="float: left"><a href="' + tabs_urls[i-1] + '">' + tabs_list[i-1] + '</a></div>');
	}

	document.write('<br style="clear: left" />');
}
