// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Sampleform' , 'SampleformLYR', 'lyr', 'Layout',null,'',0);
 
		F_OM('Table2' , 'Table2LYR', 'lyr', 'Sampleform',null,'',0);
 
			F_OM('Rectangle1' , 'Rectangle1LYR', 'img', 'Table2',new Array(
			'Mouse Over','ALERT','Show','',0,
			'Mouse Out','ALERT','Hide','',0),'',0);
 
		F_OM('TableSinTransporte' , 'TableSinTransporteLYR', 'lyr', 'Sampleform',null,'',0);
 
		F_OM('Table11' , 'Table11LYR', 'lyr', 'Sampleform',null,'',0);
 
		F_OM('TableConTransporte' , 'TableConTransporteLYR', 'lyr', 'Sampleform',null,'',0);
 
		F_OM('ALERT' , 'ALERTLYR', 'txt', 'Sampleform',null,'',0);
 
	F_OM('LayoutRegion4' , 'LayoutRegion4LYR', 'lyr', 'Layout',null,'',0);
 	F_OM('LayoutRegion5' , 'LayoutRegion5LYR', 'lyr', 'Layout',null,'',0);
 
	F_OM('LayoutRegion22' , 'LayoutRegion22LYR', 'lyr', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Rectangle1A').bind('mouseover', function(__e) { return (F_e('Rectangle1', F_MV, __e)); } );
	$('#Rectangle1A').bind('mouseout', function(__e) { return (F_e('Rectangle1', F_MT, __e)); } );
});
// End Actions

