ajax jquery mouseup change image

$('#' + id).append('<div style=&quot;text-align:center;width:300px;height:70px;background:url(/wp-content/uploads/2011/11/smashing-logo.jpg) no-repeat top center&quot;></div>');
$('#' + id + ' div').live('mouseenter', function (e) {
    $(this).css( & amp; quot; background & amp; quot;, & amp; quot; url(/wp-content/uploads / 2011 / 11 / smashing - cat.png) no - repeat top center & amp; quot;);
}).live('mouseleave', function (e) {
    $(this).css( & amp; quot; background & amp; quot;, & amp; quot; url(/wp-content/uploads / 2011 / 11 / smashing - logo.jpg) no - repeat top center & amp; quot;);
});
Code to Reset
$('#' + id).empty().hide();

댓글