// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text5' , 'Text5LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Bild23' , 'Bild23LYR', 'img', 'Layout',new Array(
	'Mouse Over','Text5','Show','',0,
	'Mouse Out','Text5','Hide','',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#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


