// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild10' , 'Bild10LYR', 'img', 'Layout',new Array(
	'Mouse Over',F_functBild10Aktion0,'','',0,
	'Mouse Out',F_functBild10Aktion1,'','',0,
	'Clicked','Layout','Go To','./html/index-de.php',0),'',0);
 
	F_pageLoaded('Layout');
}
function F_functBild10Aktion0(params) {
Tip('  Hier geht es in deutscher Sprache weiter! ')
}

function F_functBild10Aktion1(params) {
UnTip()
}


 
$(document).ready( function() {
F_onLoaded();
	$('#Bild10A').bind('click', function(__e) { return (F_e('Bild10', F_CL, __e)); } );
	$('#Bild10A').bind('mouseover', function(__e) { return (F_e('Bild10', F_MV, __e)); } );
	$('#Bild10A').bind('mouseout', function(__e) { return (F_e('Bild10', F_MT, __e)); } );
});
// End Actions


