// Slideout Portfolios ../


         $(function(){
             $('.slide-out-div').tabSlideOut({
                 tabHandle: '.handle',                              //class of the element that will be your tab
                 pathToTabImage: '../slideout/images/contact_tab.png', //path to the image for the tab (optionaly can be set using css)
                 imageHeight: '135px',                               //height of tab image
                 imageWidth: '73px',                               //width of tab image    
                 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: '80px',                                   //position from the top
                 fixedPosition: true,                               //options: true makes it stick(fixed position) on scroll
				 toggleButton: '.button'
             });
         });