window.addEvent('domready', function() {
	var picsDir = '/pics/';
	
	// initialize menu hover
	$('meni').getElements('a img').addEvents({
		mouseover: function() { if (this.id) $(this).src = picsDir + this.id+'u.png'; },
		mouseout: function() { if (this.id) $(this).src = picsDir + this.id+'.png'; }
	});
	
	// initialize news categories hover
	if ($('dejmeni')) {
		$('dejmeni').getElements('a img').addEvents({
		mouseover: function() { if (this.id) $(this).src = picsDir + this.id+'u.png'; },
		mouseout: function() { if (this.id) $(this).src = picsDir + this.id+'.png'; }
		});
	}
});