// JavaScript Document

$(document).ready(function(){
						   
$('.slide-out-div').tabSlideOut({
    tabHandle: '.handle',                              //class of the element that will be your tab
    pathToTabImage: 'images/contact_tab.jpg',          //path to the image for the tab *required*
    imageHeight: '122px',                               //height of tab image *required*
    imageWidth: '40px',                               //width of tab image *required*    
    tabLocation: 'right',                               //side of screen where tab lives, top, right, bottom, or left
    speed: 200,                                        //speed of animation
    action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
    topPos: '155px',                                   //position from the top
    fixedPosition: false                               //options: true makes it stick(fixed position) on scroll
});


$('.slide-out-div2').tabSlideOut({
    tabHandle: '.handle2',                              //class of the element that will be your tab
    pathToTabImage: 'images/twitter.jpg',          //path to the image for the tab *required*
    imageHeight: '122px',                               //height of tab image *required*
    imageWidth: '40px',                               //width of tab image *required*    
    tabLocation: 'right',                               //side of screen where tab lives, top, right, bottom, or left
    speed: 200,                                        //speed of animation
    action: 'click',                                   //options: 'click' or 'hover', action to trigger animation
    topPos: '278px',                                   //position from the top
    fixedPosition: false                               //options: true makes it stick(fixed position) on scroll
});

 
});

