// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Inlineframe1' , 'Inlineframe1LYR', 'doc', 'Layout',null,'',0);
 
	F_OM('Bild22' , 'Bild22LYR', 'img', 'Layout',new Array(
	'Mouse Over','Inlineframe1','Go To URL','./html/farbiger_fruhling.html',0,
	'Mouse Out','Inlineframe1','Go To URL','./html/daten_start.html',0),'',0);
 
	F_OM('Winterarbeit' , 'WinterarbeitLYR', 'img', 'Layout',new Array(
	'Mouse Over','Inlineframe1','Go To URL','./html/warmeschutz1.html',0,
	'Mouse Out','Inlineframe1','Go To URL','./html/daten_start.html',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild22A').bind('mouseover', function(__e) { return (F_e('Bild22', F_MV, __e)); } );
	$('#Bild22A').bind('mouseout', function(__e) { return (F_e('Bild22', F_MT, __e)); } );
	$('#WinterarbeitA').bind('mouseover', function(__e) { return (F_e('Winterarbeit', F_MV, __e)); } );
	$('#WinterarbeitA').bind('mouseout', function(__e) { return (F_e('Winterarbeit', F_MT, __e)); } );
});
// End Actions

