$(function(){
             $('.slide-out-div').tabSlideOut({
                 tabHandle: '.handle',                              //класс элемента
                 pathToTabImage: 'contact_tab.gif',          //путь к изображению *required*
                 imageHeight: '126px',                               //высота  *required*
                 imageWidth: '51px',                               //width of tab image *required*    
                 tabLocation: 'right',                               //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
                 topPos: '198px',                                   //position from the top
                 fixedPosition: true                               //options: true makes it stick(fixed position) on scroll
             });
         });

