$(function(){
    $('#tab').tabSlideOut({
        tabHandle: '.handle',                              //class of the element that will be your tab
        pathToTabImage: './images/hire.png',               //path to the image for the tab (optionaly can be set using css)
        imageHeight: '30px',                              //height of tab image
        imageWidth: '122px',                                //width of tab image    
        tabLocation: 'top',                               //side of screen where tab lives, top, right, bottom, or left
        speed: 300,                                        //speed of animation
        action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
        leftPos: '20%',                                   //position from the top or side
        fixedPosition: false                               //options: true makes it stick(fixed position) on scroll
    });
});
