Очевидно, вы захотите настроить все значения высоты, ширины, верхнего и левого углов, но это должно сделать то, что вы ищете ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Grow Shrink Demo</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<style>
#icons {
margin: 0 auto;
padding-top: 20px;
width: 560px;
}
#icons ul {
display: block;
height: 45px;
width: 560px;
overflow: hidden;
position: relative;
}
#icons ul li {
display: inline-block;
list-style-type: none;
width: 40px;
height: 40px;
overflow: hidden;
position: absolute;
top: 0px;
}
#icons img {
height: 20px;
width: 20px;
position: relative;
top: 10px;
left: 10px;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#icons img').hover(function(){
//handle mouse over
$(this).stop();
$(this).animate({
width: '26px',
height: '26px',
top: '7px',
left: '7px'
}, 200);
}, function(){
//handle mouse out
$(this).stop();
$(this).animate({
width: '20px',
height: '20px',
top: '10px',
left: '10px'
}, 200);
});
});
</script>
</head>
<body>
<div id="icons">
<ul>
<li style="left: 20px;"><a href="services.php"><img src="/images/asdf.jpg" alt="" /></a></li>
<li style="left: 80px;"><a href="services.php"><img src="img/wasd.jpg" alt="" /></a></li>
<li style="left: 140px;"><a href="services.php"><img src="img/dsdf.jpg" alt="" /></a></li>
<li style="left: 200px;"><a href="services.php"><img src="img/wafds.jpg" alt="" /></a></li>
</ul>
</div>
</body>
</html>