//google maps script
function load(type) {
  if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.setCenter(new GLatLng(47.686792,-122.312022), 13);
	var marker = new GMarker(new GLatLng(47.686792,-122.312022));
	map.addOverlay(marker);
  }
}

function changetext(repair) {
switch (repair)
{
	case "oil" :
	var oil = "\
		<h2>Oil Changes</h2>\
		<h4><h8>Starting at $28.95 with conventional oil</h8><br><br>\
		We do oil changes on any make or model vehicle and can use any type of oil desired<br></h4>";
	document.getElementById('text').innerHTML = oil;
	break;
	
 	case "tuneup" :
	var tuneup = "\
		<h2>Tune-Ups and Major Services</h2>\
		<h4><h8>Michael's Auto Repair Standard Tune-Up Service:</h8><br>\
		<ul>\
		<li>Spark plugs</li>\
		<li>Spark plug wire set</li>\
		<li>Distributor cap &amp; rotors</li>\
		<li>Air filter </li>\
		<li>Fuel filter</li>\
		<li>Standard oil change</li>\
		</ul>\
		<br>Additional tuneup services are available upon request<br><br>\
		<h8>We also perform major 30k, 60k, 90k mile major services such as:</h8>\
		<ul>\
		<li>Timing belts</li>\
		<li>Accessory belts</li>\
		<li>Check/Replace all fluids</li>\
		<li>Coolant/Water pump service</li>\
		<li>Cam/Crank seals</li>\
		</ul>\
		<br>Prices may vary depending on make/model of vehicle, please <a href='contact.html'>contact us</a> to get a quote\
		</h4>";
	document.getElementById('text').innerHTML = tuneup;
	break;
	
	case "brakes" :
	var brakes = "\
		<h2>Brake Service and Repair</h2>\
		<h4>We work on all types of brake systems and with all makes/models<br>\
		All parts and labor are covered by a standard 6-12 month warranty<br><br>\
		<h8>Michael's Auto Repair Brake Services:</h8><br>\
		<ul>\
		<li>Front and rear brakes, pads, rotors, drums, etc </li>\
		<li>Resurfacing/turning of rotors and Drums</li>\
		<li>ABS system components and sensors</li>\
		<li>Master cylinder and brake fluid servicing</li>\
		</ul>\
		<br>Prices may vary depending on make/model of vehicle, please <a href='contact.html'>contact us</a> to get a quote\
		</h4>";
	document.getElementById('text').innerHTML = brakes;
	break;
	
	case "engine" :
	var engine = "\
		<h2>Engine Repair and Troubleshooting</h2>\
		<h4>We do any type of engine work and service all engine makes<br>\
		All parts and labor are covered by a standard 3-12 month warranty<br><br>\
		<h8>Michael's Auto Repair  Engine Services:</h8><br>\
		<ul>\
		<li>Check engine and service engine light diagnostics</li>\
		<li>Starting and charging systems</li>\
		<li>Coolant and cooling systems, sensors, hoses, and cables</li>\
		<li>Gaskets, seals, and bearings</li>\
		<li>Intake and exhaust systems</li>\
		<li>Engine rebuild, replacement, and other types of repairs</li>\
		<li>Emission control and Pre-inspection repairs: catalytic converters, O2, airflow sensors</li>\
		</ul>\
		<br>Prices may vary depending on make/model of vehicle, please <a href='contact.html'>contact us</a> to get a quote\
		</h4>";
	document.getElementById('text').innerHTML = engine;
	break;
	
	case "transmission" :
	var transmission = "\
		<h2>Transmission Servicing and Repair</h2>\
		<h4>We work on all automatic and manual transmissions as well as transfer cases, differentials, and 4-wheel drive systems<br>\
		All parts and labor are covered by a standard 3-12 month warranty<br><br>\
		<h8>Michael's Auto Repair Transmission Services:</h8><br>\
		<ul>\
		<li>Automatic transmission service: fluids and filters</li>\
		<li>Automatic and manual transmission repair or replacement</li>\
		<li>Manual transmission rebuilds and fluid service</li>\
		</ul>\
		<br>Prices may vary depending on make/model of vehicle, please <a href='contact.html'>contact us</a> to get a quote\
		</h4>";
	document.getElementById('text').innerHTML = transmission;
	break;
	
	case "suspension" :
	var suspension = "\
		<h2>Suspension and Steering</h2>\
		<h4>We work on all types of syspension and steering systems<br>\
		All parts and labor are covered by a standard 6-12 month warranty<br><br>\
		<h8>Michael's Auto Repair Suspension and Steering Services:</h8><br>\
		<ul>\
		<li>Power steering pumps, fluids, hoses</li>\
		<li>CV joints, axles, and suspension systems</li>\
		</ul>\
		<br>Prices may vary depending on make/model of vehicle, please <a href='contact.html'>contact us</a> to get a quote\
		</h4>";
	document.getElementById('text').innerHTML = suspension;
	break;
	
	case "electronics" :
	var electronics = "\
		<h2>Electronics and Accessories</h2>\
		<h4><h8>In addition to standard repair services, we also work on vehicle electronic and accessory systems:</h8><br>\
		<ul>\
		<li>Ignition repair</li>\
		<li>Power locks, windows, mirrors, seats</li>\
		<li>Door/trunk locks and latches</li>\
		<li>Switches and components</li>\
		<li>Headlights and light bulbs</li>\
		<li>And many more!</li>\
		</ul>\
		</h4>";
	document.getElementById('text').innerHTML = electronics;
	break;
	
	case "diagnostics" :
	var diagnostics = "\
		<h2>Electrical and Engine Diagnostics</h2>\
		<h4><h8>We have various engine diagnostic equipment and computers:</h8><br>\
		<ul>\
		<li>Check engine light and service engine diagnostics</li>\
		<li>Engine control unit (ECU) diagnostics</li>\
		<li>Electrical wiring and harness diagnostics</li>\
		<li>Airbag system diagnostics *</li>\
		<li>Transmission and control unit diagnostics</li>\
		</ul>\
		<br><h7>* certain makes/models only, some vehicles require dealer servicing of airbag systems</h7>\
		</h4>";
	document.getElementById('text').innerHTML = diagnostics;
	break;
}
}
