// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild3' , 'Bild3LYR', 'img', 'Layout',new Array(
	'Loaded','Bild3','Fly','In From Left',0),'',0);
 	F_OM('Bild4' , 'Bild4LYR', 'img', 'Layout',new Array(
	'Page Loaded','Bild4','Fly','In From Bottom Left',1),'',0);
 	F_OM('Bild8' , 'Bild8LYR', 'img', 'Layout',new Array(
	'Page Loaded','Bild8','Fly','In From Bottom',0),'',0);
 	F_OM('Text1' , 'Text1LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Komponente5' , 'Komponente5LYR', 'lyr', 'Layout',null,'',0);
 	F_OM('Bild14' , 'Bild14LYR', 'img', 'Layout',new Array(
	'Mouse Over','Text1','Show','',0,
	'Mouse Out','Text1','Hide','',0,
	'Mouse Over','Komponente5','Show','',0,
	'Mouse Out','Komponente5','Hide','',0),'',0);
 	F_OM('Bild17' , 'Bild17LYR', 'img', 'Layout',new Array(
	'Clicked','Layout','Go To','http://www.fragfinn.de/kinderliste.html',0),'',0);
 	F_OM('Bild18' , 'Bild18LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild17','Show','',0,
	'Mouse Out','Bild17','Hide','',0,
	'Clicked','Layout','Go To','http://www.fragfinn.de/kinderliste.html',0),'',0);
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild3').bind('load', function(__e) { return (F_e('Bild3', F_L, __e)); } );
	$('#Bild14A').bind('mouseover', function(__e) { return (F_e('Bild14', F_MV, __e)); } );
	$('#Bild14A').bind('mouseout', function(__e) { return (F_e('Bild14', F_MT, __e)); } );
	$('#Bild18A').bind('click', function(__e) { return (F_e('Bild18', F_CL, __e)); } );
	$('#Bild18A').bind('mouseover', function(__e) { return (F_e('Bild18', F_MV, __e)); } );
	$('#Bild18A').bind('mouseout', function(__e) { return (F_e('Bild18', F_MT, __e)); } );
});
// End Actions


