// Richard Sweet -  2008 -  //


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

	document.getElementById("cons").style.backgroundPosition = "top right"; 
	document.getElementById("drive").style.backgroundPosition = "top right";
	}


