Mouseover is a function available on HTML. Since this is a HTML builder, you can implement the simplest code possible to have the desired effect. Switch to the code view when you are building the website then add the following code for your elements:
<html>
<head>
<script>
function bigImg(x)
{
x.style.height="64px";
x.style.width="64px";
}
function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
</script>
</head>
<body>
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="Image.EXTENSION" alt="IMAGE" width="32" height="32">
You can tweak the resolution for the thumbnail and big image. It's necessary to use the function for everything to work properly.