// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text20' , 'Text20LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text20','Fly','In From Top Left',0),'',0);
 	F_OM('Text22' , 'Text22LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text22','Fly','In From Top Left',0),'',0);
 	F_OM('Text29' , 'Text29LYR', 'txt', 'Layout',null,'',0);
		F_OM('Text29Link1' , '', 'tln', 'Text29',new Array(
		'Clicked','Layout','Bring Forward','',0,
		'Mouse Over','Layout','Fly','In From Top',0,
		'Clicked','Layout','Go To','mailto:mail@tradoc.de',0),'',0);
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Text29Link1').bind('click', function(__e) { return (F_e('Text29Link1', F_CL, __e)); } );
	$('#Text29Link1').bind('mouseover', function(__e) { return (F_e('Text29Link1', F_MV, __e)); } );
});
// End Actions


