function div_scroll(div_name, direction) {
	if (document.getElementById) {
		var div_obj = document.getElementById(div_name);
		div_obj.scrollLeft = parseInt(div_obj.scrollLeft) + direction;
		t=setTimeout("div_scroll('"+div_name+"', "+direction+")",10);
	}
}

