window.addEvent( 'domready', function(){
	$$('.menu a[class!=active] span' ).each( function(a){
		a.set( 'morph', {duration:200} );
		a.setStyle( 'line-height', 38 );
		a.addEvent( 'mouseover', function(){ this.morph( {'line-height':32} ); } );
		a.addEvent( 'mouseout', function(){ this.morph( {'line-height':38} ); } );
	});
	
	$$('a.rss-link').each( function(a){
		a.addEvent( 'mouseenter', function(){
			this.getElements('img')[0].src = '/templates/heavymachines.ru/images/rss_icon2.gif';
		});
		a.addEvent( 'mouseout', function(){
			this.getElements('img')[0].src = '/templates/heavymachines.ru/images/rss_icon.gif';
		});
	});
});
