I have tried every possible combination of methods for replacing an image but have found no solution that works.
I uploaded the problematic code here: http://dl.dropbox.com/u/2959730/index.html
I would suggest downloading the source and trying your code. The problem lies with the player.playPause() function that should be attached to the #playButt img.
Please help I've been struggling for hours now!
EDIT:
I've corrected everything and as per suggestion I'm using this code now for playPause(), but it still doesn't work!. This is the most frustrating thing I have ever dealt with...
this.playPause = function(){
this.status = !this.status;
var status = this.status;
var playEl = document.getElementById('play');
$("#play").fadeOut(200, function(){
if(status)
playEl.src = "img/pauseButton.png";
else
playEl.src = "img/playButton.png";
$("#play").fadeIn(200);
})
}