function initJSFX()
{
	var imagesJSFX = document.getElementsByTagName('img');

	for(var i = 0; i < imagesJSFX.length; i++)
	{
		if(imagesJSFX[i].className == 'zoomable')
		{
			imagesJSFX[i].onmouseover = function() { JSFX.zoomIn(this, 3, 10); };
			imagesJSFX[i].onmouseout = function() { JSFX.zoomOut(this, 3, 10); };
		}
	}
}

if(document.addEventListener)
{
	window.addEventListener('load', initJSFX, false);
}
if(document.attachEvent)
{
	window.attachEvent('onload', initJSFX);
}