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