@File: /surebert/events/getWheelDirection.js
@Description: gets the mouse wheel delta e.g. the direction and amount it is being spun
function printDelta(e){
document.title = sb.events.getWheelDirection(e);
}
//firefox/safari/opera
sb.events.add('#box', 'DOMMouseScroll', printDelta);
//ie
sb.events.add('#box', 'mousewheel', printDelta);