window.addEvent('domready', function(){
	$('leftmenu').getElements('a.inactive').each(function(item, index){
		var img = item.getElement('img');
		if(img){
			var value = img.getProperty('src');
		
			item.addEvent('mouseover', function(){
				img.setProperty('src', value.replace('_off_', '_on_'));
			});
			
			item.addEvent('mouseout', function(){
				img.setProperty('src', value.replace('_on_', '_off_'));
			});
		}
	});
	
});