I think a simple Javascript code will get you a solution that you want. Hint: give it an id and use getElementById in Javascript if you want to solve the problem by using Javascript.
Well, since the task's is a piece of cake, You can also achieve what you want in CSS 1,2 or 3.
<h1 class="title" >The Title</h1>
In your CSS,
.title:hover { color: BLUE; }
I hope this helps you.