// Begin Actions
function F_doLoaded() {
	document.main = new F_cMain();
	document.objectModel = new Object();
	F_OM('Layout','LayoutLYR', 'doc', '', new Array());
	F_OM('SalesPic' , 'SalesPicLYR', 'img', 'Layout',new Array(
	'Page Loaded','SalesPic','Hide','',0),'',0);
 	F_OM('TechPic' , 'TechPicLYR', 'img', 'Layout',new Array(
	'Page Loaded','TechPic','Hide','',0,
	'Clicked','Layout','Go To','mailto:support@multitech.com.au',0),'',0);
 	F_OM('AccountsPic' , 'AccountsPicLYR', 'img', 'Layout',new Array(
	'Page Loaded','AccountsPic','Hide','',0),'',0);
 	F_OM('EStore' , 'EStoreLYR', 'img', 'Layout',new Array(
	'Page Loaded','EStore','Hide','',0),'',0);
 	F_OM('Picture111' , 'Picture111LYR', 'img', 'Layout',new Array(
	'Mouse Over','SalesPic','Show','',0,
	'Mouse Out','SalesPic','Hide','',0,
	'Clicked','Layout','Go To','mailto:info@multitech.com.au',0),'',0);
 	F_OM('Picture112' , 'Picture112LYR', 'img', 'Layout',new Array(
	'Mouse Over','TechPic','Show','',0,
	'Mouse Out','TechPic','Hide','',0,
	'Clicked','Layout','Go To','mailto:support@multitech.com.au',0),'',0);
 	F_OM('Picture114' , 'Picture114LYR', 'img', 'Layout',new Array(
	'Mouse Over','AccountsPic','Show','',0,
	'Mouse Out','AccountsPic','Hide','',0,
	'Clicked','Layout','Go To','mailto:accounts@multitech.com.au',0),'',0);
 	F_OM('BuyNow' , 'BuyNowLYR', 'img', 'Layout',new Array(
	'Mouse Over','EStore','Show','',0,
	'Mouse Out','EStore','Hide','',0,
	'Clicked','Layout','Go To','http://www.multitech.com.au/eshop',0),'',0);
 
	F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
	$('#TechPicA').bind('click', function(__e) { return (F_e('TechPic', F_CL, __e)); } );
	$('#Picture111A').bind('click', function(__e) { return (F_e('Picture111', F_CL, __e)); } );
	$('#Picture111A').bind('mouseover', function(__e) { return (F_e('Picture111', F_MV, __e)); } );
	$('#Picture111A').bind('mouseout', function(__e) { return (F_e('Picture111', F_MT, __e)); } );
	$('#Picture112A').bind('click', function(__e) { return (F_e('Picture112', F_CL, __e)); } );
	$('#Picture112A').bind('mouseover', function(__e) { return (F_e('Picture112', F_MV, __e)); } );
	$('#Picture112A').bind('mouseout', function(__e) { return (F_e('Picture112', F_MT, __e)); } );
	$('#Picture114A').bind('click', function(__e) { return (F_e('Picture114', F_CL, __e)); } );
	$('#Picture114A').bind('mouseover', function(__e) { return (F_e('Picture114', F_MV, __e)); } );
	$('#Picture114A').bind('mouseout', function(__e) { return (F_e('Picture114', F_MT, __e)); } );
	$('#BuyNowA').bind('click', function(__e) { return (F_e('BuyNow', F_CL, __e)); } );
	$('#BuyNowA').bind('mouseover', function(__e) { return (F_e('BuyNow', F_MV, __e)); } );
	$('#BuyNowA').bind('mouseout', function(__e) { return (F_e('BuyNow', F_MT, __e)); } );
});
// End Actions


