// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Text110' , 'Text110LYR', 'txt', 'Layout',null,'',0);
		F_OM('Text110Link1' , '', 'tln', 'Text110',new Array(
		'Mouse Over','Picture154','Show','',0,
		'Mouse Out','Picture154','Hide','',0,
		'Clicked','_parent:Layout','Go To','http://www.malgamu.com/',0),'',0);
		F_OM('Text110Link2' , '', 'tln', 'Text110',new Array(
		'Mouse Over','Picture155','Show','',0,
		'Mouse Out','Picture155','Hide','',0,
		'Clicked','_parent:Layout','Go To','http://www.frankielane.com',0),'',0);
 	F_OM('Picture154' , 'Picture154LYR', 'img', 'Layout',null,'',0);
 	F_OM('Picture155' , 'Picture155LYR', 'img', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Text110Link1').bind('click', function(__e) { return (F_e('Text110Link1', F_CL, __e)); } );
	$('#Text110Link1').bind('mouseover', function(__e) { return (F_e('Text110Link1', F_MV, __e)); } );
	$('#Text110Link1').bind('mouseout', function(__e) { return (F_e('Text110Link1', F_MT, __e)); } );
	$('#Text110Link2').bind('click', function(__e) { return (F_e('Text110Link2', F_CL, __e)); } );
	$('#Text110Link2').bind('mouseover', function(__e) { return (F_e('Text110Link2', F_MV, __e)); } );
	$('#Text110Link2').bind('mouseout', function(__e) { return (F_e('Text110Link2', F_MT, __e)); } );
});
// End Actions


