$(function(){
	// Slide out - Start 
    $('.slide-out-div').tabSlideOut({
        tabHandle: '.handle',                     //class of the element that will become your tab
        pathToTabImage: 'images/region_slide.gif', //path to the image for the tab //Optionally can be set using css
        imageHeight: '210px',                     //height of tab image           //Optionally can be set using css
        imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
        tabLocation: 'right',                      //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: '150px',                          //position from the top/ use if tabLocation is left or right
        leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
        fixedPosition: false                      //options: true makes it stick(fixed position) on scroll
    });
    // Slide out - End
    
	// Accordion - Start
	$(document).ready(function(){

		$(".accordion h3").eq(2).addClass("active");
		$(".accordion table").eq(2).show();

		$(".accordion h3").click(function(){
		  $(this).next("table").slideToggle("slow")
		  .siblings("table:visible").slideUp("slow");
		  $(this).toggleClass("active");
		  $(this).siblings("h3").removeClass("active");
		});
	});
	// Accordion - End
});


