/**
 * Simple jQuery hover image extension.
 */
jQuery.fn.hoverImage = function(newSrc) {
	this.each(function() {
		var oldSrc = this.src;
		$(this).hover(function() {
			this.src = newSrc;
		}, function() {
			this.src = oldSrc;
		});
	});
}
