Hola
Quiero saber como hago para hacer que al hacer click en un link, este quede con color de fondo amarillo.
Y luego al hacer click en otro link, este sea el que pase a estar con el fondo en amarillo y el anterior vuelva al estado original. 
por ahora tengo:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Page-Enter" content="blendTrans(Duration=1)"> 
<title>Documento sin título</title>
<link href="css/estilo.css" rel="stylesheet" type="text/css" />
<script language="javascript">
<!-- 
function arquitectura(){
   window.parent.frames["segundo"].location="arquitectura.html"
   window.parent.frames["tercero"].location="blanco.html"
   window.parent.frames["cuarto"].location="blanco.html"
   document.getElementById('arq').style.backgroundCol  or="#ffff00"
} 
function diseno(){
   window.parent.frames["segundo"].location="diseno.html"
   window.parent.frames["tercero"].location="blanco.html"
   window.parent.frames["cuarto"].location="blanco.html"
   document.getElementById('dis').style.backgroundCol  or="#ffff00"
} 
function nosotros(){
   window.parent.frames["segundo"].location="nosotros.html"
   window.parent.frames["tercero"].location="blanco.html"
   window.parent.frames["cuarto"].location="blanco.html"
}
//-->
</script> 
</head> 
<table width="90" border="0" align="left" cellpadding="0" cellspacing="0" id="tabla" valign="top" name="tabla">
  <tr>
    <td> <div class="txt">
	||||||||||||||||||||||||||||||||||||||||||||||||||  |
	<div class="boton" onclick="javascript
:arquitectura()" id="arq">arquitectura</div>
    <div class="boton" onclick="javascript
:diseno()" id="dis">diseño</div>
	<div class="boton" onclick="javascript
:nosotros()">nosotros</div>
	<div class="boton">clicks!</div>
<br /> 
_ _ _ _ _ _ _ _ _ _ _
	<div class="boton"><a class="txt" href="mailto:
[email protected]">contacto</a></div>
	</div>
  	</td>
  </tr>
</table>  
</body>
</html>