
function cssChange() {
    var obj_body = document.getElementById('body');
    var obj_text = document.getElementById('atext');
    var obj_container = document.getElementById('container');
    var obj_top = document.getElementById('contents_top');
    var obj_middle = document.getElementById('contents');
    var obj_bottom = document.getElementById('contents_bottom');

    if (obj_body.className !== 'non') {
        obj_body.className   = 'non';
        obj_container.className   = 'flag';
        obj_top.className    = 'non';
        obj_middle.className = 'non';
        obj_bottom.className = 'non';
//        obj_text.innerHTML = '元に戻す';
    }else {
        obj_body.className   = '';
        obj_container.className = '';
        obj_top.className    = '';
        obj_middle.className = '';
        obj_bottom.className = '';
//        obj_text.innerHTML = 'テキストを読みやすくする';
    }
} 