// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text1' , 'Text1LYR', 'txt', 'Layout',null,'',0);
 
		F_OM('Bild17' , 'Bild17LYR', 'img', 'Text1',new Array(
		'Mouse Over','Text10','Show','',0,
		'Mouse Out','Text10','Hide','',0),'',0);
 		F_OM('Bild21' , 'Bild21LYR', 'img', 'Text1',new Array(
		'Mouse Over','Text6','Show','',0,
		'Mouse Out','Text6','Hide','',0),'',0);
 
	F_OM('Text6' , 'Text6LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Text10' , 'Text10LYR', 'txt', 'Layout',null,'',0);
 	F_OM('NavigationBar1' , 'NavigationBar1LYR', 'nav', 'Layout',null,'',0);
 
	F_OM('NavigationBar2' , 'NavigationBar2LYR', 'nav', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild21A').bind('mouseover', function(__e) { return (F_e('Bild21', F_MV, __e)); } );
	$('#Bild21A').bind('mouseout', function(__e) { return (F_e('Bild21', F_MT, __e)); } );
	$('#Bild17A').bind('mouseover', function(__e) { return (F_e('Bild17', F_MV, __e)); } );
	$('#Bild17A').bind('mouseout', function(__e) { return (F_e('Bild17', F_MT, __e)); } );
});
// End Actions

// Begin Navigation Bars
var ButtonsImageMapping = [];
ButtonsImageMapping["NavigationBar1"] = {
	"Navigationsschaltflaeche1" : { image: "./assets/images/autogen/Startseite_H1.gif", rollover: "./assets/images/autogen/Startseite_HR1.gif", w: 120, h: 28 },
	"Navigationsschaltflaeche2" : { image: "./assets/images/autogen/mehr_Info_N1.gif", rollover: "./assets/images/autogen/mehr_Info_NR1.gif", w: 120, h: 28 },
	"Navigationsschaltflaeche3" : { image: "./assets/images/autogen/Referenzliste_N1.gif", rollover: "./assets/images/autogen/Referenzliste_NR1.gif", w: 120, h: 28 },
	"Navigationsschaltflaeche4" : { image: "./assets/images/autogen/Kontakt_N1.gif", rollover: "./assets/images/autogen/Kontakt_NR1.gif", w: 120, h: 28 },
	"Navigationsschaltflaeche5" : { image: "./assets/images/autogen/Impressum_N1.gif", rollover: "./assets/images/autogen/Impressum_NR1.gif", w: 120, h: 28 }
};

$(document).ready(function(){
	$.fn.nofNavBarOptions({ navBarId: "NavigationBar1", rollover: true, autoClose: false });
	$("#NavigationBar1").nofNavBar({isMain: true, orientation: "horizontal" });
	$("#NavigationBar1 ul").hide();
});


// End Navigation Bars


