<!-- Begin
//pre-load images
if (document.images)
{
	sys_info1 = new Image();
	sys_info1.src = 'images/generic_sys_info_off.gif';
	sys_info2 = new Image();
	sys_info2.src = 'images/generic_sys_info_on.gif';
	throttle1 = new Image();
	throttle1.src = 'images/airwire900_throttle_off.gif';
	throttle2 = new Image();
	throttle2.src = 'images/airwire900_throttle_on.gif';
	recvr_decodr1 = new Image();
	recvr_decodr1.src = 'images/airwire900_recvr_decodr_off.gif';
	recvr_decodr2 = new Image();
	recvr_decodr2.src = 'images/airwire900_recvr_decodr_on.gif';
	install_acc1 = new Image();
	install_acc1.src = 'images/airwire900_install_acc_off.gif';
	install_acc2 = new Image();
	install_acc2.src = 'images/airwire900_install_acc_on.gif';
	faq1 = new Image();
	faq1.src = 'images/airwire900_faq_off.gif';
	faq2 = new Image();
	faq2.src = 'images/airwire900_faq_on.gif';
	dealers1 = new Image();
	dealers1.src = 'images/airwire900_dealers_off.gif';
	dealers2 = new Image();
	dealers2.src = 'images/airwire900_dealers_on.gif';
	price1 = new Image();
	price1.src = 'images/generic_pricing_off.gif';
	price2 = new Image();
	price2.src = 'images/generic_pricing_on.gif';
	documentation1 = new Image();
	documentation1.src = 'images/generic_documentation_off.gif';
	documentation2 = new Image();
	documentation2.src = 'images/generic_documentation_on.gif';
	ordering1 = new Image();
	ordering1.src = 'images/generic_ordering_off.gif';
	ordering2 = new Image();
	ordering2.src = 'images/generic_ordering_on.gif';
}

function imgOnHome(imgName)
{
	if (document.images)
		document[imgName].src = eval(imgName + '2.src');
	
	switch (imgName)
	{
		case 'sys_info':
			self.status = 'AirWire900 System Information';
			break;
		case 'throttle':
			self.status = 'AirWire900 Wireless Throttle';
			break;
		case 'recvr_decodr':
			self.status = 'AirWire900 Receiver/Decoder';
			break;
		case 'install_acc':
			self.status = 'AirWire900 Installation Accessories';
			break;
		case 'faq':
			self.status = 'AirWire900 Frequently Asked Questions';
			break;
		case 'dealers':
			self.status = 'AirWire900 Dealers';
			break;
		case 'price':
			self.status = 'AirWire900 Pricing';
			break;
		case 'documentation':
			self.status = 'AirWire900 Documentation';
			break;
		case 'ordering':
			self.status = 'Airwire900 Ordering Information';
			break;
	}
	
	return true;
}

function imgOffHome(imgName)
{
	if (document.images)
		document[imgName].src = eval(imgName + '1.src');
	
	self.status = '';
	
	return true;
}
// End -->
