// JavaScript Document
$(function(){
             $('.slide-out-div').tabSlideOut({
                 tabHandle: '.handle',                              //class of the element that will be your tab
                 pathToTabImage: 'http://www.quiettime.org/images/tabslideout/connect-cath.jpg',         // path to the image for the tab *REQUIRED HERE* (optionally can be set using css)
                 imageHeight: '150px',                               //height of tab image
                 imageWidth: '40px',                               //width of tab image    
                 tabLocation: 'left',                               //side of screen where tab lives, top, right, bottom, or left
                 speed: 400,                                        //speed of animation
                 action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
                 topPos: '218px',                                   //position from the top orig 298px @ btm border 64x360 div 
                 fixedPosition: false                               //options: true makes it stick(fixed position) on scroll
             });
         });
