check out css sprites heres a rough example, you need to make the image yourself
Theres more information on sprites here css sprites and no need to use jquery for this (sample.jpg needs to be 80px w x 40px h)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<style type="text/css">
.swapper{
display: block;
width: 40px;
height: 40px;
overflow: hidden;
background: url(sample.jpg);
}
.swapper:hover {
background: url(sample.jpg) -40px;
background-position: -40px 0;
}
</style>
</head>
<body>
<div class="swapper"></div>
</body>
</html>