var IE = ((document.all) && (navigator.appVersion.indexOf('MSIE') != -1)) ? true : false;

function resize()
{
	var maxWidth = 400;
	var images = document.getElementsByTagName('img');
	for (var i = 0; i < images.length; i++)
	{
		if (images[i].width > maxWidth)
		{
			if (IE)
			{
				//Bug in IE :(
				//images[i].setAttribute('className', 'enlarge');
				//images[i].setAttribute('onMouseDown', 'this.width = ' + images[i].width);
				images[i].width = Math.min(images[i].width, maxWidth);
				//images[i].alt = 'Klik op het plaatje voor een uitvergroting';
				//images[i].setAttribute('onMouseUp', 'this.width = ' + images[i].width);
			}
			else
			{
				images[i].setAttribute('class', 'enlarge');
				images[i].setAttribute('onMouseDown', 'this.width = ' + images[i].width);
				images[i].width = Math.min(images[i].width, maxWidth);
				//Bug in Firefox :(
				//images[i].alt = 'Klik op het plaatje voor een uitvergroting';
				images[i].setAttribute('onMouseUp', 'this.width = ' + images[i].width);
			}
		}
	}
}