// JavaScript Document
window.addEvent('domready', function() {
	$$('img.mo').each(function(img) {
		var src = img.getProperty('src');
		img.addEvent('mouseenter', function() { img.setProperty('src',src.replace('dim', 'lit')); });
		img.addEvent('mouseleave', function() { img.setProperty('src',src); });
	});
});

