klein is fijn

<html>
<head>
<script type="text/javascript">
function swap4all() {
var images = document.getElementsByTagName('img');
for (var i = 0; i < images.length; i++) {
images[i].style.position = 'absolute';
images[i].style.width = images[i].offsetWidth / 2;
images[i].style.left = images[i].offsetWidth * i;
images[i].style.zIndex = 99 - i;
images[i].onmouseover = function() { this.style.width = this.offsetWidth * 2; }
images[i].onmouseout = function() { this.style.width = this.offsetWidth / 2; }
}
}
</script>
</head>
<body onload='swap4all();'>
<img src="http://www.sat4all.com/forums/images/sat4all/logo.gif" alt="" />
<img src="http://www.hamar-trykk.no/images/Logo_TBAS_pms.jpg" alt="" />
</body>
</html>