$j = jQuery.noConflict();
$j(document).ready(function(){
    $j('.slide-out-div').tabSlideOut({
        tabHandle: '.handle', //class of the element that will be your tab -doesnt have to be an anchor
        pathToTabImage: 'tl_files/images/layout/btn_kontakt.png', //relative path to the image for the tab *required*
        imageHeight: '100px',
        imageWidth: '30px',
        tabLocation: 'left', //side of screen where tab lives, top, right, bottom, or left
        speed: 300, //speed of animation
        action: 'hover', //options: 'click' or 'hover', action to trigger animation
        topPos: '180px', //position from the top/ use if tabLocation is left or right
        fixedPosition: true //options: true makes it stick(fixed position) on scroll
    })
    $j('#carouselthreed').carousel3D({
        speed: 900,
        perspectiveZoom: 70,
        sideOffset: 180,
        secondaryOpacity: .35,
        emClass: 'tdc-element'
    });
});

