// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Picture111' , 'Picture111LYR', 'img', 'Layout',new Array(
	'Mouse Over','Picture24','Show','',0,
	'Mouse Out','Picture24','Hide','',0,
	'Clicked','Layout','Go To','../home.html',0),'',0);
 	F_OM('Picture24' , 'Picture24LYR', 'img', 'Layout',null,'',0);
 	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Picture111A').bind('click', function(__e) { return (F_e('Picture111', F_CL, __e)); } );
	$('#Picture111A').bind('mouseover', function(__e) { return (F_e('Picture111', F_MV, __e)); } );
	$('#Picture111A').bind('mouseout', function(__e) { return (F_e('Picture111', F_MT, __e)); } );
});
// End Actions


