Nifler,
нормальный код для таких случаев
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
#clikaem{
color: Red;
}
#clikaem.blue{
color: Blue;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
var clik = $("#clikaem");
clik.click(function() {
clik.toggleClass('blue')
});
});
</script>
</head>
<body>
<span id="clikaem">Klikni</span>
</body>
</html>