
window.addEvent('domready', function() {

/*
	var menu = $$('#menu a');
	menu.each(function(item) {
		item.fx = new Fx.Style(item, 'opacity', {
			duration: 100
		});
		item.fx.set(0.6);
		item.addEvent('mouseover', function() {
			this.fx.stop();
			this.fx.start(1);
		});
		item.addEvent('mouseout', function() {
			this.fx.stop();
			this.fx.start(0.6);
		});
	});
	*/
	var lang = $$('#lang a');
	lang.each(function(item) {
		item.fx = new Fx.Style(item, 'opacity', {
			duration: 100
		});
		item.fx.set(0.4);
		item.addEvent('mouseover', function() {
			this.fx.stop();
			this.fx.start(1);
		});
		item.addEvent('mouseout', function() {
			if (!this.isActive) {
				this.fx.stop();
				this.fx.start(0.4);
			}
		});
	});
	
	$ES('.active', 'lang').each(function(item) {
		item.isActive = true;
		item.fx.set(1);
	});
});
