<html>
<head>
<script type="text/javascript">
function changeimg(){
document.getElementById('img1').src='http://www.andrealittera.it/imgp/p.jpg';
setTimeout("changeimg()",140);
}
</script>
</head>
<body>
<img src="http://www.andrealittera.it/imgp/p.jpg" id="img1" onload="changeimg()" >
</body>
</html>