// Next Mouseovers

if (document.images) {
	var about_over = new Image(); about_over.src = "IMG/main_nav_about-over.gif"
	var about_out = new Image(); about_out.src = "IMG/main_nav_about.gif"
	var about_slide = new Image(); about_slide.src = "IMG/main_slide_about.jpg"
	
	var services_over = new Image(); services_over.src = "IMG/main_nav_services-over.gif"
	var services_out = new Image(); services_out.src = "IMG/main_nav_services.gif"
	var services_slide = new Image(); services_slide.src = "IMG/main_slide_services.jpg"
	
	var locations_over = new Image(); locations_over.src = "IMG/main_nav_locations-over.gif"
	var locations_out = new Image(); locations_out.src = "IMG/main_nav_locations.gif"
	var locations_slide = new Image(); locations_slide.src = "IMG/main_slide_locations.jpg"
	
	var insurance_over = new Image(); insurance_over.src = "IMG/main_nav_insurance-over.gif"
	var insurance_out = new Image(); insurance_out.src = "IMG/main_nav_insurance.gif"
	var insurance_slide = new Image(); insurance_slide.src = "IMG/main_slide_insurance.jpg"
	
	var contact_over = new Image(); contact_over.src = "IMG/main_nav_contact-over.gif"
	var contact_out = new Image(); contact_out.src = "IMG/main_nav_contact.gif"
	var contact_slide = new Image(); contact_slide.src = "IMG/main_slide_contact.jpg"
}

function act(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + '_over.src')
		document.slide.src = eval(imgName + '_slide.src')
	}
}

function inact(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + '_out.src')
	}
}
