// Richard Sweet -  2008 -  //

	function change_inst(){
	document.getElementById("cons").style.backgroundPosition = "top right"; 
	document.getElementById("drive").style.backgroundPosition = "top right"; 
	document.getElementById("inst").style.backgroundPosition = "bottom left"; 
	}
	
	function change_cons(){
	document.getElementById("inst").style.backgroundPosition = "top right"; 
	document.getElementById("drive").style.backgroundPosition = "top right"; 
	document.getElementById("cons").style.backgroundPosition = "bottom left";
	}
	
	function change_drive(){
	document.getElementById("inst").style.backgroundPosition = "top right"; 
	document.getElementById("cons").style.backgroundPosition = "top right"; 
	document.getElementById("drive").style.backgroundPosition = "bottom left";
	}
	
	function change_back(){
	document.getElementById("inst").style.backgroundPosition = "top left"; 
	document.getElementById("cons").style.backgroundPosition = "top left"; 
	document.getElementById("drive").style.backgroundPosition = "top left";
	}


