Which div is scrollsble in the grid?

Helllo!

I trie to scroll my table with button, and I use the csrollTop function but I can find wich div is scrollable into mygrid.

[code]
top_man=0;
inc_man=100;

$("#btnGridManUp").bind(“click”, function() {
if(top_man-inc_man>0){
$("#dhtmlxGridmanuctsMan").find(".objbox").scrollTop(top_man-inc_man);
top_man=top_man-inc_man;
}else if(top_man-inc_man<=0){
top_man=0;
$("#dhtmlxGridmanuctsMan").find(".objbox").scrollTop(top_man);
}
});
$("#btnGridManDown").bind(“click”, function() {
scroll_height=$("#dhtmlxGridmanuctsMan").find(".objbox").prop(“scrollHeight”)-$("#dhtmlxGridmanuctsMan").find(".objbox").height();
if(top_man+inc_man<scroll_height){
$("#dhtmlxGridmanuctsMan").find(".objbox").scrollTop(top_man+inc_man);
top_man=top_man+inc_man;
}else if(top_man+inc_man>=scroll_height){
top_man=scroll_height;
$("#dhtmlxGridmanuctsMan").find(".objbox").scrollTop(top_man);
}
});[/code]