How can I set the z-index on hover of an img element? When the mouse pointer is outside of the img, the z-index must be 0, otherwise, it should be 9.I do know how to set it, but not how to change it on hover.\[code\]$('#content img').click(function () { $(this).css("z-index", "99")});\[/code\]