// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('james' , 'jamesLYR', 'img', 'Layout',new Array(
	'Mouse Over','james','Set Src','./fotos/James_Home_01.jpg',0,
	'Mouse Over','james','Get Src','',0,
	'Mouse Out','james','Set Src','./fotos/James_Home_02.jpg',0,
	'Mouse Out','james','Get Src','',0),'',0);
 
	F_OM('LayoutRegion15' , 'LayoutRegion15LYR', 'lyr', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#jamesA').bind('mouseover', function(__e) { return (F_e('james', F_MV, __e)); } );
	$('#jamesA').bind('mouseout', function(__e) { return (F_e('james', F_MT, __e)); } );
});
// End Actions


