window.addEvent('domready', function(){
			var myQuotes = new Quotator('akcio_container');
			
			
	$$('.kovek').addEvents({
		mouseenter: function(){
			this.set('morph', {duration: 300});
			this.morph({
				'background-color': '#CCCCCC'
			});
		},
		mouseleave: function(){
			this.set('morph', {duration: 300}); 
			this.morph({
				'background-color': '#E9E9E9'
			});
		}
	});
		});
