function sc(obj,over_out) {
	if (document.all) {
		if (over_out==0) {
			obj.className = 'content_over';
		} else {
			obj.className = 'content';
		}
	}
}

function scrollbar_switch(cname) {
	body.className = cname;
}

w = 0;
function init() {
	w = window.document.all.body.offsetWidth;
}

scrollbar_status = 'mouseout';
function mousepos() {
	xpos = window.event.x;
	if ( (xpos>w-18) && (xpos<w) ) {
		scrollbar_switch('mouseover')
		scrollbar_status = 'mouseover';
	} else if (scrollbar_status=='mouseover') {
		scrollbar_switch('mouseout')
		scrollbar_status = 'mouseout';
	}
}