skrudjmakdak, про .className не слышал? А вообще:
<html>
<head>
<title>example</title>
<style>
.cl {
width: 100px;
height: 30px;
border: 1px solid silver;
}
.cl-one {
background-color: red;
font-weight: bold;
}
.cl-two {
background-color: black;
color: green;
border-radius: 5px;
font-style: italic;
}
</style>
</head>
<body>
<div class="cl" onclick="classList.toggle('cl-one');">123</div>
<div class="cl" onclick="classList.toggle('cl-two');">345</div>
</body>
</html>
Кроссбраузерность? classList.js в помощь.