// Begin Actions
function F_doLoaded() {	document.main = new F_cMain();	document.objectModel = new Object();	F_OM('Layout','LayoutLYR', 'doc', '', new Array(	'Page Loaded',F_functLayoutAction0,'','',0));	F_OM('Picture2' , 'Picture2LYR', 'img', 'Layout',new Array(	'Mouse Over','Databasetext','Show','',0,	'Mouse Out','Databasetext','Hide','',0,	'Clicked','Layout','Go To','../html/databases.html',0),'',0); 	F_OM('Picture3' , 'Picture3LYR', 'img', 'Layout',new Array(	'Mouse Over','Trainingtext','Show','',0,	'Mouse Out','Trainingtext','Hide','',0,	'Clicked','Layout','Go To','../html/training.html',0),'',0); 	F_OM('Picture4' , 'Picture4LYR', 'img', 'Layout',new Array(	'Mouse Over','Supporttext','Show','',0,	'Mouse Out','Supporttext','Hide','',0,	'Clicked','Layout','Go To','../html/training.html',0),'',0); 	F_OM('Picture5' , 'Picture5LYR', 'img', 'Layout',new Array(	'Mouse Over','Templatestext','Show','',0,	'Mouse Out','Templatestext','Hide','',0,	'Clicked','Layout','Go To','../html/templates.html',0),'',0); 	F_OM('Picture6' , 'Picture6LYR', 'img', 'Layout',new Array(	'Mouse Over','Systemstext','Show','',0,	'Mouse Out','Systemstext','Hide','',0,	'Clicked','Layout','Go To','../html/systems.html',0),'',0); 	F_OM('Databasetext' , 'DatabasetextLYR', 'txt', 'Layout',null,'',0); 	F_OM('Trainingtext' , 'TrainingtextLYR', 'txt', 'Layout',null,'',0); 	F_OM('Supporttext' , 'SupporttextLYR', 'txt', 'Layout',null,'',0); 	F_OM('Systemstext' , 'SystemstextLYR', 'txt', 'Layout',null,'',0); 	F_OM('Templatestext' , 'TemplatestextLYR', 'txt', 'Layout',null,'',0); 	F_pageLoaded('Layout');}function F_functLayoutAction0(params) {
var layoutWidth = 671; 
if(F_NN) {
var bodyWidth = window.innerWidth;
var theOffset = (bodyWidth - layoutWidth)/2;
if(theOffset > 0) {
document.layers['LayoutLYR'].left=theOffset;
}
} else {
var bodyWidth = document.body.offsetWidth;
var theOffset = (bodyWidth - layoutWidth)/2;
if(theOffset > 0) {
document.all.tags('DIV') ['LayoutLYR'].style.left=theOffset;
}
}

}

 
$(document).ready( function() {
F_onLoaded();
	$('#Picture2A').bind('click', function(__e) { return (F_e('Picture2', F_CL, __e)); } );
	$('#Picture2A').bind('mouseover', function(__e) { return (F_e('Picture2', F_MV, __e)); } );
	$('#Picture2A').bind('mouseout', function(__e) { return (F_e('Picture2', F_MT, __e)); } );
	$('#Picture3A').bind('click', function(__e) { return (F_e('Picture3', F_CL, __e)); } );
	$('#Picture3A').bind('mouseover', function(__e) { return (F_e('Picture3', F_MV, __e)); } );
	$('#Picture3A').bind('mouseout', function(__e) { return (F_e('Picture3', F_MT, __e)); } );
	$('#Picture4A').bind('click', function(__e) { return (F_e('Picture4', F_CL, __e)); } );
	$('#Picture4A').bind('mouseover', function(__e) { return (F_e('Picture4', F_MV, __e)); } );
	$('#Picture4A').bind('mouseout', function(__e) { return (F_e('Picture4', F_MT, __e)); } );
	$('#Picture6A').bind('click', function(__e) { return (F_e('Picture6', F_CL, __e)); } );
	$('#Picture6A').bind('mouseover', function(__e) { return (F_e('Picture6', F_MV, __e)); } );
	$('#Picture6A').bind('mouseout', function(__e) { return (F_e('Picture6', F_MT, __e)); } );
	$('#Picture5A').bind('click', function(__e) { return (F_e('Picture5', F_CL, __e)); } );
	$('#Picture5A').bind('mouseover', function(__e) { return (F_e('Picture5', F_MV, __e)); } );
	$('#Picture5A').bind('mouseout', function(__e) { return (F_e('Picture5', F_MT, __e)); } );
});
// End Actions


