// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('Picture8' , 'Picture8LYR', 'img', 'Layout',new Array(
	'Mouse Over','Picture10','Show','',0),'',0);
 
	F_OM('Picture10' , 'Picture10LYR', 'img', 'Layout',new Array(
	'Mouse Out','Picture10','Hide','',0,
	'Clicked','Layout','Go To','javascript:history.back()',0),'',0);
 	F_OM('Text11' , 'Text11LYR', 'txt', 'Layout',null,'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#Picture8A').bind('mouseover', function(__e) { return (F_e('Picture8', F_MV, __e)); } );
	$('#Picture10A').bind('click', function(__e) { return (F_e('Picture10', F_CL, __e)); } );
	$('#Picture10A').bind('mouseout', function(__e) { return (F_e('Picture10', F_MT, __e)); } );
});
// End Actions


