function resizeFrame(iPixels) {
	iPixels=iPixels+30;
	f=document.getElementById('FrameHexon');
	f.style.height = iPixels + 'px';
}

window.addEvent('domready', function() {
	
	$$('#contentlayerprint img').each(function(img) {
		if(img.src.contains('-hover-off')) {
			img.addEvent('mouseover', function() {
				img.src = img.src.replace('-hover-off','-hover-on');
			});
			img.addEvent('mouseout', function() {
				img.src = img.src.replace('-hover-on','-hover-off');
			});
		}
	});
});