// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Hauptbild' , 'HauptbildLYR', 'img', 'Layout',new Array(
	
'Page Loaded','Hauptbild','Set Image',F_Parm('Image 1 (Normal)','../Wir_uber_uns/Keckeis.jpg','Image 2 (Highlighted)','../Wir_uber_uns/Luftbild.jpg','Image 3 (Depressed)','../Wir_uber_uns/KeckeisOnTaurus.jpg','Image 4 (Selected)','../Wir_uber_uns/LKW1k.jpg','Image 5','','Image 6','','Image 7','','Image 8','','Image 9','','Image 10',''),0
),'',0);
 
	F_OM('Luftbild' , 'LuftbildLYR', 'img', 'Layout',new Array(
	'Mouse Over','Hauptbild','Use Image','Image 2 (Highlighted)',0),'',0);
 
	F_OM('Inhaber' , 'InhaberLYR', 'img', 'Layout',new Array(
	'Mouse Over','Hauptbild','Use Image','Image 3 (Depressed)',0),'',0);
 
	F_OM('Bild19' , 'Bild19LYR', 'img', 'Layout',new Array(
	'Mouse Over','Hauptbild','Use Image','Image 1 (Normal)',0),'',0);
 
	F_OM('LKW' , 'LKWLYR', 'img', 'Layout',new Array(
	'Mouse Over','Hauptbild','Use Image','Image 4 (Selected)',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild19A').bind('mouseover', function(__e) { return (F_e('Bild19', F_MV, __e)); } );
	$('#LuftbildA').bind('mouseover', function(__e) { return (F_e('Luftbild', F_MV, __e)); } );
	$('#InhaberA').bind('mouseover', function(__e) { return (F_e('Inhaber', F_MV, __e)); } );
	$('#LKWA').bind('mouseover', function(__e) { return (F_e('LKW', F_MV, __e)); } );
});
// End Actions


