<html>
<head>
<script type="text/javascript" language="javascript">
var timer;
function pr() {
var w=document.chel.width;
clearTimeout(timer);
if (w<640) {
document.chel.width=w+10;
timer = setTimeout("pr()", 1);
}
}
function mn() {
var w=document.chel.width;
clearTimeout(timer);
if (w>300) {
document.chel.width=w-10
timer = setTimeout("mn()", 1);
}
}
</script>
</head>
<body>
<img src="http://goiron.enetgallery.com/_ph/1/224558321.jpg" width="300" name="chel" onMouseOver="pr()" onMouseout="mn()">
</body>
</html>