function trans(element) {
 element.style.opacity = '0.5';
 }
function untrans(element) {
 element.style.opacity = '1';
}
