Puedes claro.. cambiar el style, class...
Un ejemplo:
Código Javascript
:
Ver original<html>
<head>
<link href="estilo1.css" rel="stylesheet" type="text/css" id="linkestilos"/>
<script language="JavaScript">
function cambiarEstilo()
{
estilo = document.getElementById('linkestilos');
if (estilo.getAttribute('href')=='estilo1.css')
estilo.setAttribute('href','estilo2.css');
else
estilo.setAttribute('href','estilo1.css');
}
</script>
</head>
<body>
<p class="especial">Este párrafo debería tener texto especial verde</p>
<p><input type="button" name="Submit" value="Cambiar estilo" onclick="cambiarEstilo()"/></p>
</body>
</html>