// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Bild8' , 'Bild8LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild8','Fly','Out To Bottom Left',0),'',0);
 	F_OM('Bild6' , 'Bild6LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild6','Fly','In From Bottom',0,
	'Motion Ended','Bild8','Fly','In From Top',0),'',0);
 	F_OM('Bild9' , 'Bild9LYR', 'img', 'Layout',new Array(
	'Page Loaded','Bild9','Fly',F_Parm('direction',199,'hide','Show','duration',10,'inDuration',4,'outDuration',4,'repeat',3,'reverse',false,'message',''),0,
	'Motion Ended','Bild6','Fly','In From Top Left',0),'',0);
 	F_OM('Bild7' , 'Bild7LYR', 'img', 'Layout',new Array(
	'Page Loaded','Bild7','Fly',F_Parm('direction',135,'hide','Show','duration',10,'inDuration',2,'outDuration',2,'repeat',3,'reverse',true,'message',''),0,
	'Clicked','Bild7','Fly','In From Right',0,
	'Motion Ended','Bild9','Fly',F_Parm('direction',270,'hide','Show','duration',10,'inDuration',2,'outDuration',2,'repeat',1,'reverse',false,'message',''),0),'',0);
 	F_OM('Bild12' , 'Bild12LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild12','Fly','Out To Bottom Left',0),'',0);
 	F_OM('Bild14' , 'Bild14LYR', 'img', 'Layout',new Array(
	'Page Loaded','Bild14','Fly','In From Top',0,
	'Mouse Over','Bild14','Fly',F_Parm('direction',80,'hide','Show','duration',10,'inDuration',2,'outDuration',2,'repeat',2,'reverse',true,'message',''),0,
	'Motion Ended','Bild12','Fly','In From Bottom Right',0),'',0);
 	F_OM('Bild5' , 'Bild5LYR', 'img', 'Layout',new Array(
	'Mouse Over','Bild5','Move By',F_Parm('x',100,'y',0,'duration',10,'inDuration',2,'outDuration',2,'repeat',2,'reverse',false,'message',''),0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Bild5A').bind('mouseover', function(__e) { return (F_e('Bild5', F_MV, __e)); } );
	$('#Bild12A').bind('mouseover', function(__e) { return (F_e('Bild12', F_MV, __e)); } );
	$('#Bild6A').bind('mouseover', function(__e) { return (F_e('Bild6', F_MV, __e)); } );
	$('#Bild14A').bind('mouseover', function(__e) { return (F_e('Bild14', F_MV, __e)); } );
	$('#Bild8A').bind('mouseover', function(__e) { return (F_e('Bild8', F_MV, __e)); } );
	$('#Bild7A').bind('click', function(__e) { return (F_e('Bild7', F_CL, __e)); } );
});
// End Actions


