// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Picture98' , 'Picture98LYR', 'img', 'Layout',new Array(
	'Mouse Over','Text252','Peek','In From Top',0,
	'Mouse Out','Text252','Peek','Out To Top',0,
	'Clicked','Layout','Go To','./html/hem.html',0),'',0);
 	F_OM('Text252' , 'Text252LYR', 'txt', 'Layout',null,'',0);
 	F_OM('Picture99' , 'Picture99LYR', 'img', 'Layout',new Array(
	'Mouse Over','Text252','Peek','In From Top',0,
	'Mouse Out','Text252','Peek','Out To Top',0,
	'Clicked','Layout','Go To','./html/hem.html',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Picture99A').bind('click', function(__e) { return (F_e('Picture99', F_CL, __e)); } );
	$('#Picture99A').bind('mouseover', function(__e) { return (F_e('Picture99', F_MV, __e)); } );
	$('#Picture99A').bind('mouseout', function(__e) { return (F_e('Picture99', F_MT, __e)); } );
	$('#Picture98A').bind('click', function(__e) { return (F_e('Picture98', F_CL, __e)); } );
	$('#Picture98A').bind('mouseover', function(__e) { return (F_e('Picture98', F_MV, __e)); } );
	$('#Picture98A').bind('mouseout', function(__e) { return (F_e('Picture98', F_MT, __e)); } );
});
// End Actions


