﻿$(function() {

    $('.slide-out-div1').tabSlideOut({
        tabHandle: '.handle1',                     //class of the element that will become your tab
        pathToTabImage: 'images/about_this_floor_tab_03.png', //path to the image for the tab //Optionally can be set using css
        imageHeight: '20px',                     //height of tab image           //Optionally can be set using css
        imageWidth: '113px',                       //width of tab image            //Optionally can be set using css
        tabLocation: 'bottom',                      //side of screen where tab lives, top, right, bottom, or left
        speed: 50,                               //speed of animation
        action: 'click',                          //options: 'click' or 'hover', action to trigger animation
        //topPos: '282px',                          //position from the top/ use if tabLocation is left or right
        leftPos: '772px',                          //position from left/ use if tabLocation is bottom or top
        fixedPosition: false,                      //options: true makes it stick(fixed position) on scroll
        onLoadSlideOut: false,
        divtohide: 'aboutslide'
    });

});