<!-- Begin

//pre-load images

if (document.images)
{
	top1 = new Image();
	top1.src = 'images/header_above_button.jpg';
	top3 = new Image();
	top3.src = 'images/header_above_roof.jpg';
	home1 = new Image();
	home1.src = 'images/button_home_off.jpg';
	home2 = new Image();
	home2.src = 'images/button_home_on.jpg';
	home3 = new Image();
	home3.src = 'images/button_home_roof.jpg';
	about1 = new Image();
	about1.src = 'images/button_about_off.jpg';
	about2 = new Image();
	about2.src = 'images/button_about_on.jpg';
	about3 = new Image();
	about3.src = 'images/button_about_roof.jpg';
	service1 = new Image();
	service1.src = 'images/button_services_off.jpg';
	service2 = new Image();
	service2.src = 'images/button_services_on.jpg';
	service3 = new Image();
	service3.src = 'images/button_services_roof.jpg';
	pricing1 = new Image();
	pricing1.src = 'images/button_pricing_off.jpg';
	pricing2 = new Image();
	pricing2.src = 'images/button_pricing_on.jpg';
	pricing3 = new Image();
	pricing3.src = 'images/button_pricing_roof.jpg';
	faq1 = new Image();
	faq1.src = 'images/button_faq_off.jpg';
	faq2 = new Image();
	faq2.src = 'images/button_faq_on.jpg';
	faq3 = new Image();
	faq3.src = 'images/button_faq_roof.jpg';
	contact1 = new Image();
	contact1.src = 'images/button_contact_off.jpg';
	contact2 = new Image();
	contact2.src = 'images/button_contact_on.jpg';
	contact3 = new Image();
	contact3.src = 'images/button_contact_roof.jpg';
}

function imgOn(imgName,imgAbove)
{
	// Use on version of button and button above that goes with that page.
	if (document.images)
	{
		document[imgName].src = eval(imgName + '2.src');
		document[imgAbove].src = eval(imgAbove + '3.src');
	}
	
	switch (imgName)
	{
		case 'home':
			self.status = 'TexasInspect.com Home Inspection - Home';
			break;
		case 'about':
			self.status = 'TexasInspect.com Home Inspection Real Estate Services - About Us';
			break;
		case 'service':
			self.status = 'TexasInspect.com Home Inspection Real Estate Services - Services';
			break;
		case 'pricing':
			self.status = 'TexasInspect.com Home Inspection - Pricing';
			break;
		case 'faq':
			self.status = 'TexasInspect.com Home Inspection - Frequently Asked Questions';
			break;
		case 'contact':
			self.status = 'TexasInspect.com Home Inspection - Contact Us';
			break;
	}
	
	return true;
}



function imgOff(imgName,imgAbove)
{
	if (document.images)
		document[imgName].src = eval(imgName + '1.src');
		document[imgAbove].src = eval(imgAbove + '1.src');
	
	self.status = '';
	
	return true;
}

// End -->

