// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text24' , 'Text24LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text24','Hide','',0),'',0);
 
	F_OM('Text28' , 'Text28LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text28','Hide','',0),'',0);
 	F_OM('Text30' , 'Text30LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text30','Hide','',0),'',0);
 
	F_OM('Text31' , 'Text31LYR', 'txt', 'Layout',new Array(
	'Page Loaded','Text31','Hide','',0),'',0);
 
	F_OM('FormsButton1' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'close');
 	F_OM('FormsButton2' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'close');
 	F_OM('FormsButton3' , '', 'btn', 'Layout',new Array(
	'Clicked','Layout','Close','',0),'',0,'close');
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#FormsButton1').bind('click', function(__e) { return (F_e('FormsButton1', F_CL, __e)); } );
	$('#FormsButton2').bind('click', function(__e) { return (F_e('FormsButton2', F_CL, __e)); } );
	$('#FormsButton3').bind('click', function(__e) { return (F_e('FormsButton3', F_CL, __e)); } );
});
// End Actions


