// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('LayoutBereich3' , 'LayoutBereich3LYR', 'lyr', 'Layout',null,'',0);
 
		F_OM('Rechteck4' , 'Rechteck4LYR', 'img', 'LayoutBereich3',null,'',0);
 		F_OM('Bild23' , 'Bild23LYR', 'img', 'LayoutBereich3',new Array(
		'Mouse Over','Rechteck4','Show','',0,
		'Mouse Out','Rechteck4','Hide','',0,
		'Clicked','Layout','Go To','#datenschutz',0),'',0);
 
	F_OM('LayoutBereich2' , 'LayoutBereich2LYR', 'lyr', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild23A').bind('click', function(__e) { return (F_e('Bild23', F_CL, __e)); } );
	$('#Bild23A').bind('mouseover', function(__e) { return (F_e('Bild23', F_MV, __e)); } );
	$('#Bild23A').bind('mouseout', function(__e) { return (F_e('Bild23', F_MT, __e)); } );
});
// End Actions


