// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('LayoutBereich5' , 'LayoutBereich5LYR', 'lyr', 'Layout',null,'',0);
 
		F_OM('Bild12' , 'Bild12LYR', 'img', 'LayoutBereich5',new Array(
		'Mouse Over','Bild15','Show','',0,
		'Mouse Out','Bild15','Hide','',0),'',0);
 		F_OM('Bild15' , 'Bild15LYR', 'img', 'LayoutBereich5',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild12A').bind('mouseover', function(__e) { return (F_e('Bild12', F_MV, __e)); } );
	$('#Bild12A').bind('mouseout', function(__e) { return (F_e('Bild12', F_MT, __e)); } );
});
// End Actions


