HTML эффектного jquery-плагина, демку которого вы можете наблюдать в блоге -
.
Code:
<html>
<head>
<title>Animation waves effect</title>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="lake.js"></script>
<script type="text/javascript">
$(function() {
$('#lake-img').lake({
'waves': 3,
'scale': 0.3,
'speed': 0.3
});
});
</script>
</head>
<body>
<img id="lake-img" src="picture.jpg" style="display: none;"/>
</body>
</html>