// JavaScript Document
function setover(obj) {
    obj.style['opacity'] = 0.7;
    obj.style['filter'] = 'alpha(opacity=70)';
}
function setout(obj) {
    obj.style['opacity'] = 1;
    obj.style['filter'] = 'alpha(opacity=100)';
}
