function activaSelector() {
	var eslang = $('eslang');
	var enlang = $('enlang');	

	eslang.set('opacity', 1).addEvents({
		mouseenter: function(){
			// This morphes the opacity and backgroundColor
			this.morph({
				'opacity': 1
				
			});
				
			
		},
		mouseleave: function(){
			// Morphes back to the original style
			this.morph({
				'opacity': 1
				
			});	
		}
	});	

	enlang.set('opacity', 0.6).addEvents({
		mouseenter: function(){
			// This morphes the opacity and backgroundColor
			this.morph({
				'opacity': 1
				
			});
				
			
		},
		mouseleave: function(){
			// Morphes back to the original style
			this.morph({
				'opacity': 0.6
				
			});	
		}
	});								

	
}
