window.addEvent('load',function(){
    /*writtens = $$('.entry-meta');
    writtens.each(function(it,i){
	it.setOpacity(0.3);
	it.effect = new Fx.Morph(it, {duration: 'medium', transition: Fx.Transitions.Sine.easeOut});
	it.addEvent('mouseover',function(){
	    this.effect.cancel();
	    this.effect.start({
		'opacity':1,
	    });
	});
	it.addEvent('mouseout',function(){
	    this.effect.cancel();
	    this.effect.start({
		'opacity': 0.3,
	    });
	})
    });*/

    /*
    $$('.entry-meta ').each(function(it,i){
      it.getElement('.togg').effect = new Fx.Morph(it.getElement('.togg'),{duration:600,transition: 'linear'});

      it.getElement('.togg').addEvent('mouseover',function(){
	this.effect.start({'width':350})
      })
      it.getElement('.togg').addEvent('mouseout',function(){
	it.getElement('.togg').effect.start({'width':20})
      })
    });
	*/

});
