$(function(){
        $('.slide-out-div').tabSlideOut({
            tabHandle: '.handle',                       //class of the element that will become your tab
            pathToTabImage: './images/MoreHanger_01.png',               //path to the image for the tab
            imageHeight: '178px',          //height of tab image
            imageWidth: '80px',            //width of tab image
            tabLocation: 'left',               //side of screen where tab lives, top, right, bottom, or left
            speed: 50,                 //speed of animation
            action: 'hover',                   //options: 'click' or 'hover', action to trigger animation
            topPos: '350px',                  //position from the top/ use if tabLocation is left or right
            leftPos: '0px',                //position from left/ use if tabLocation is bottom or top
            fixedPosition: true              //options: true makes it stick(fixed position) on scroll
        });

    });


