Is the main DIV set to overflow:hidden ?
If this is the case, you can check its overflow need by increasing the scrollLeft property and then scrollLeft it to see if it has changed:
function containsTooMuch(el) { var original = el.scrollLeft++; return el.scrollLeft-- > original; }
James source share