Oh okay. Sorry about that.
Hmm well, i made that change, but it is still not working. By which I mean nothing happens on hover of the first image.
Here is my code:
$(document).ready(function(){
$("#header_content").hover(function(){
$(this).html("<img id='header_content' src='header_hover.png' alt='Drag Down' />");
},function(){
$(this).html("<img id='header_content' src='header.png' alt='The Irf' />");
});
});
Did i made another stupid mistake?