// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild45' , 'Bild45LYR', 'img', 'Layout',null,'',0);
 
	F_OM('wolke' , 'wolkeLYR', 'img', 'Layout',new Array(
	'Page Loaded','wolke','Fly',F_Parm('direction',270,'hide','Show','duration',220,'inDuration',20,'outDuration',2,'repeat',1,'reverse',false,'message',''),0,
	'Motion Ended','wolke','Hide','',0),'',0);
 
	F_OM('nedflagge' , 'nedflaggeLYR', 'img', 'Layout',new Array(
	'Page Loaded','nedflagge','Fly','In From Left',1,
	'Loaded','Text1','Show','',0,
	'Clicked','Layout','Go To','http://www.familycamping.nl/Ned/ned.html',0),'',0);
 
	F_OM('deutschflagge' , 'deutschflaggeLYR', 'img', 'Layout',new Array(
	'Page Loaded','deutschflagge','Fly','In From Right',1,
	'Loaded','Text2','Show','',0,
	'Clicked','Layout','Go To','http://www.familycamping.nl/Deutsch/deutsch.html',0),'',0);
 
	F_OM('Text1' , 'Text1LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Text2' , 'Text2LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Tabelle1' , 'Tabelle1LYR', 'lyr', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#nedflaggeA').bind('click', function(__e) { return (F_e('nedflagge', F_CL, __e)); } );
	$('#nedflagge').bind('load', function(__e) { return (F_e('nedflagge', F_L, __e)); } );
	$('#deutschflaggeA').bind('click', function(__e) { return (F_e('deutschflagge', F_CL, __e)); } );
	$('#deutschflagge').bind('load', function(__e) { return (F_e('deutschflagge', F_L, __e)); } );
});
// End Actions


