// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild2' , 'Bild2LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild2','Bring To Front','',1,
	'Mouse Out','Bild2','Send To Back','',1),'',0);
 	F_OM('Tabelle2' , 'Tabelle2LYR', 'lyr', 'Layout',null,'',0);
 
	F_OM('Nav1' , 'Nav1LYR', 'nav', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild2A').bind('mouseover', function(__e) { return (F_e('Bild2', F_MV, __e)); } );
	$('#Bild2A').bind('mouseout', function(__e) { return (F_e('Bild2', F_MT, __e)); } );
});
// End Actions

// Begin Navigation Bars
var ButtonsImageMapping = [];
ButtonsImageMapping["Nav1"] = {
	"Navigationsschaltflaeche1" : { image: "./die_Chariots_HPrimH3_1.gif", rollover: "./die_Chariots_HRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche2" : { image: "./der_Chor_Nprim6_2.gif", rollover: "./der_Chor_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche3" : { image: "./_die_Menschen_Nprim6_2.gif", rollover: "./_die_Menschen_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche4" : { image: "./die_Lieder_Nprim6_2.gif", rollover: "./die_Lieder_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche5" : { image: "./wann_und_wo_Nprim6_2.gif", rollover: "./wann_und_wo_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche6" : { image: "./neugierig_Nprim6_2.gif", rollover: "./neugierig_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche7" : { image: "./Gastebuch_Nprim6_2.gif", rollover: "./Gastebuch_NRPrimH3_1.gif", w: 130, h: 30 },
	"Navigationsschaltflaeche8" : { image: "./internes_Nprim6_2.gif", rollover: "./internes_NRPrimH3_1.gif", w: 130, h: 30 }
};

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


// End Navigation Bars


