// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Picture6' , 'Picture6LYR', 'img', 'Layout',new Array(
	'Page Loaded','Picture6','Set Image',F_Parm('Image 1 (Normal)','./assets/images/Primary_Tai_Chi_Icon_Welcome.jpg','Image 2 (Highlighted)','./assets/images/Primary_Tai_Chi_Icon_Welcome_highlight.jpg','Image 3 (Depressed)','','Image 4 (Selected)','','Image 5','','Image 6','','Image 7','','Image 8','','Image 9','','Image 10',''),0,
	'Clicked','Layout','Go To URL',F_Parm('URL','./html/about_us.html','Target Frame','This','Other Target',''),0,
	'Mouse Out','Picture6','Use Image','Image 1 (Normal)',0,
	'Mouse Over','Picture6','Use Image','Image 2 (Highlighted)',0),'',0);
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Picture6A').bind('click', function(__e) { return (F_e('Picture6', F_CL, __e)); } );
	$('#Picture6A').bind('mouseout', function(__e) { return (F_e('Picture6', F_MT, __e)); } );
	$('#Picture6A').bind('mouseover', function(__e) { return (F_e('Picture6', F_MV, __e)); } );
});
// End Actions

