
var llaTip = new TipObj('llaTip');
with (llaTip) {
	tips.schulen = new Array("(page.winW()/2)-314", 170, 150, 
		"<a href=\"lla_schulen_fslw.php\" style=\"color:white\">FS für Landwirtschaft</a><br>" +
		"<a href=\"lla_schulen_fslhw.php\" style=\"color:white\">FS für ländliche Hauswirtschaft</a><br>" +
		"<a href=\"lla_schulen_lbsfw.php\" style=\"color:white\">FB für Forstwirtschaft</a><br>" +
		"<a href=\"lla_schulen_lbsgb.php\" style=\"color:white\">FB für Gartenbau</a><br>" +
		"<a href=\"lla_schulen_fse.php\" style=\"color:white\">FS für Erwachsene</a>"
	);
	tips.lehrbetriebe = new Array("(page.winW()/2)-225", 170, 150, 
		"<a href=\"lla_lehrbetriebe_pflanzenbau.php\" style=\"color:white\">Pflanzenbau</a><br>" +
		"<a href=\"lla_lehrbetriebe_tierhaltung.php\" style=\"color:white\">Tierhaltung</a><br>" +
		"<a href=\"lla_lehrbetriebe_wald.php\" style=\"color:white\">Wald</a><br>" +
		"<a href=\"lla_lehrbetriebe_baumschule.php\" style=\"color:white\">Baumschule / Obstverwertung</a><br>" +
		"<a href=\"lla_lehrbetriebe_gaertnerei.php\" style=\"color:white\">Gärtnerei</a><br>" +
		"<a href=\"lla_lehrbetriebe_verkauf.php\" style=\"color:white\">Verkauf</a>" 
	
	);
	tips.team = new Array("(page.winW()/2)-32", 170, 150, 
		"<a href=\"lla_team_direktion.php\" style=\"color:white\">Direktion/Verwaltung</a><br>" +
		"<a href=\"lla_team_hw.php\" style=\"color:white\">LehrerInnen Hauswirtschaft</a><br>" +
		"<a href=\"lla_team_lw.php\" style=\"color:white\">LehrerInnen Landwirtschaft</a><br>" +
//		"<a href=\"lla_team_ws.php\" style=\"color:white\">LehrerInnen Werkstätten</a><br>" +
//		"<a href=\"lla_team_landwirtschaft.php\" style=\"color:white\">LehrerInnen Pflanzenbau/Tierzucht</a><br>" //+
		//"<a href=\"lla_team_personal.php\" style=\"color:white\">Küche/Reinigung</a>"
		"<a href=\"lla_team_personal.php\" style=\"color:white\">Werkstätten/Küche/Reinigung</a>"
	);
	template = '<table bgcolor="#4D6615" cellpadding="0" cellspacing="0" width="%2%" border="0">' +
  		'<tr><td><table cellpadding="3" cellspacing="1" width="100%" border="0">' +
  		'<tr><td bgcolor="#4D6615" align="left" height="18" class="tipClass"><div style=\"margin-left:17px;\">%3%</div></td></tr>' +
  		'</table></td></tr></table>';
	tipStick = 0;
}


// Capture the onmousemove event so tips can follow the mouse. Add in all your tip objects here
// and also any functions from other scripts that need this event (e.g. my DHTML Scroller) too.
if (isNS4) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = function(evt)
{

 // Add or remove all your tip objects from here!
 // llaTip.track(evt);


 if (isNS4) return document.routeEvent(evt);
}


// A small function that refreshes NS4 on horizontal resize.
var nsWinW = window.innerWidth, nsWinH = window.innerHeight;
function ns4BugCheck()
{
 if (isNS4 && (nsWinW!=innerWidth || nsWinH!=innerHeight)) location.reload()
}

window.onresize = function()
{
 ns4BugCheck();
}
