Podés empezar con algo así y luego seguir trabajándolo:
Código PHP:
<!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>Documento sin título</title>
<script type="text/javascript">
var elasticidad = 0.8,velocidad = 0.6,escala = 99,xp=.01,yp=.01;
function e(){
var y=-(parseInt(this.style.height)*escala/100)+escala;
yp = yp*elasticidad+y*velocidad;
this.style.height=parseInt(this.style.height)/100*yp+'px';
var x=-(parseInt(this.style.width)*escala/100)+escala;
xp = xp*elasticidad+x*velocidad;
this.style.width=parseInt(this.style.width)*xp/100+'px';;
}
onload=function(){
setInterval(function(){e.call(document.getElementById('pp'));},30);
}
</script>
</head>
<body>
<a id="pp" onmouseover="escala=115" onmouseout="escala=99" style="display:block; background-color:#333; width:90px; height:50px" href="asas"></a>
</body>
</html>