// rollover.js

window.addEvent('domready', function(){
	$$('#navbar a img').each(function(el){
		new Image().src = el.src.replace('.gif', '_on.gif');							  
		el.addEvent( 'mouseover', function(){ this.src = this.src.replace('.gif', '_on.gif'); });
		el.addEvent( 'mouseout', function(){ this.src = this.src.replace('_on', ''); });
	});
});