function setOpacity(value) {
   this.style.opacity = value/10;
   this.style.filter = 'alpha(opacity=' + value*10 + ')';
}

