Here is a working example of horizontal scroll with mousewheel, but it does not scroll smoothly. By smoothly I mean like ordinary vertical scroll in Firefox or Opera.
Just change this:
this.scrollLeft -= (delta * 30);
to this:
this.scrollLeft -= (delta * 1);