// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array(
	'Page Loaded','Layout','StartAnimation',F_Parm('animationName','Animation 1','loopAtEnd','loopAnimation','cycles',Number.MAX_VALUE),0));
	F_OM('Picture385' , 'Picture385LYR', 'img', 'Layout',new Array(
	'Page Loaded','Picture385','StartAnimation',F_Parm('animationName','Animation 1','loopAtEnd','loopAnimation','cycles',Number.MAX_VALUE),0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
});
// End Actions

$(document).ready(
function() {
	$.TimelinesManager.setupTimelines([
		{id: "Animation 1", fps: 15, duration: 9733.33, 
		 oList: [
		 {  id: "Picture385", 
		    transitions: [
		     {  prop: 'left', dtype: "css:int", tweens:[ {t0: 0.00, tf: 9666.67, startval: 0, mu: "px", endval: 1344, easing: "linear"} ] },
		     {  prop: 'top', dtype: "css:int", tweens:[ {t0: 0.00, tf: 9666.67, startval: -2, mu: "px", endval: -3, easing: "linear"} ] },
		     {  prop: 'position', dtype: "css:string", tweens:[  ] }
		    ], 
		    actions: [
		{t: 0.00, name: 'setProperty', params: {prop: 'position', dtype: '', value: 'absolute'}}    ] 
		 }
		 ]
		}
	]);
	$.TimelinesManager.enforceLayout({'Picture385':'Picture385'});

}
);