	var yStart = 104;
var yPos = 104;
var xStart = 810
var xPos = 1000;
var step = 2;
var delay = 1;

function changePos()
{
	if (yPos < yStart + document.body.scrollTop)
	{
		yPos = yPos + step;
	}
	if (yPos > yStart + document.body.scrollTop)
	{
		yPos = yPos - step;
	}

	if (xPos < xStart + document.body.scrollLeft)
	{
		xPos = xPos + step;
	}
	if (xPos > xStart + document.body.scrollLeft)
	{
		xPos = xPos - step;
	}
	
	FlyMenu.style.top = yPos;
	FlyMenu.style.left = xPos;
}

function start()
{
	loopfunc();
}

function loopfunc()
{
	changePos();
	setTimeout('loopfunc()',delay);
}

document.write('<div id="FlyMenu" STYLE="position:absolute;visibility:visible;">');
document.write('	<table bgcolor="#3E4F6C" cellpadding="0" cellspacing="0" border="0">');
document.write('		<tr><td width="1" bgcolor="#999999"></td>');
document.write('			<td valign="top">');
document.write('				<table cellspacing="0" cellpadding="0">');
document.write('					<tr><td height="1" bgcolor="#aaaaaa"></td></tr>');
document.write('					<tr>');
document.write('						<td class="menu_header">QUICK-Menü<\/td>');
document.write('					<\/tr>');
document.write('					<tr><td height="1" bgcolor="#222222"></td></tr>');
document.write('					<tr>');
document.write('						<td>');
document.write('							<ul id="Navigation">');
document.write('								<li><a href="page.html">Home<\/a><\/li>');
document.write('								<li><a href="kontakt.html">Kontakt<\/a><\/li>');
document.write('								<li><a href="open.html">Öffnungszeiten<\/a><\/li>');
document.write('								<li><a href="agb.html">Unsere AGB<\/a><\/li>');
document.write('							<\/ul>');
document.write('						<\/td>');
document.write('					<\/tr>');
document.write('					<tr><td height="1" bgcolor="#aaaaaa"></td></tr>');
document.write('					<tr>');
document.write('						<td class="menu_header">Unsere Leistungen<\/td>');
document.write('					<\/tr>');
document.write('					<tr><td height="1" bgcolor="#222222"></td></tr>');
document.write('					<tr>');
document.write('						<td class="menu_text">');
document.write('							<ul class="menu"><br \/>');
document.write('								<li>Instandsetzung von<br \/>Transportern u. Nutzfahrzeugen<\/li>');
document.write('								<li>Allgemeine<br \/>PKW Reparatur<\/li>');
document.write('								<li>Bremsendienst<\/li>');
document.write('								<li>Fahrtenschreiber<\/li>');
document.write('								<li>TÜV AU SP UVV<\/li>');
document.write('								<li>Elektronik<\/li>');
document.write('								<li>Hydraulik<\/li>');
document.write('								<li>Ladebordwand<\/li>');
document.write('								<li>Diagnose<\/li>');
document.write('								<li>gebrauchte<br \/>Ersatzteile<\/li>');
document.write('								<li>24h-Service<\/li>');
document.write('							<\/ul>');
document.write('						<\/td>');
document.write('					<\/tr>');
document.write('					<tr><td height="1" bgcolor="#aaaaaa"></td></tr>');
document.write('					<tr>');
document.write('						<td class="menu_header">Notdienst-Nummer<\/td>');
document.write('					<\/tr>');
document.write('					<tr><td height="1" bgcolor="#222222"></td></tr>');
document.write('					<tr>');
document.write('						<td class="menu_text">');
document.write('							<div class="notdienst">+49 (0) 179 \/ 4952776<\/div>');
document.write('						<\/td>');
document.write('					<\/tr>');
document.write('				<\/table>');
document.write('			<\/td>');
document.write('			<td bgcolor="#333333" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('		<\/tr>');
document.write('		<tr>');
document.write('			<td bgcolor="#333333" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#333333" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#333333" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('		<\/tr>');
document.write('		<tr>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#666666" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('		<\/tr>');
document.write('		<tr>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('			<td bgcolor="#999999" width="1" height="1"><\/td>');
document.write('		<\/tr>');
document.write('	<\/table>');
document.write('<\/div>');

