$(document).ready(function() {

	$('#cart-box img.hover').hover(
	  function () {
		//$(this).append($("<span> ***</span>"));
		this.src = this.src.replace( /\.gif$/, '-hover.gif' );
	  }, 
	  function () {
		this.src = this.src.replace( /-hover\.gif$/, '.gif' );
	  }
	);   

	$('#menu img').hover(
	  function () {
		//$(this).append($("<span> ***</span>"));
		this.src = this.src.replace( /\.gif$/, '-hover.gif' );
	  }, 
	  function () {
		this.src = this.src.replace( /-hover\.gif$/, '.gif' );
	  }
	);   

});
