I'm trying to change a CSS background image using jQuery, and the code I am using just reloads the current image. When you click the li#menu-item-23, I want the div with the class of #changeMe to switch background images
$('li#menu-item-23').click(function(){
$('#changeMe').css('background-image','url(i/logo4.png)');
});
... 'url("i/logo4.png")' ...