window.addEvent('domready',function() {
	/*$$('#menu li img').each(function(h){
		var src = h.getProperty('src');
		h.addEvents({
			'mouseenter': function(m){
				h.setProperty('src', h.getProperty('alt'));
			},
			'mouseleave': function(m){
				h.setProperty('src', src);
			}
		});
	});*/
});
