$(document).ready(
	function(){
		
		// ----- Slideshow -----
		$('ul#slideshow').innerfade({
			speed: '4000',
			timeout: 8000,
			type: 'random',
			containerheight: '250px'
		});
		
		// ----- Slideshow - frontpage -----
		$('ul#frontpageSlideshow').innerfade({
			speed: '2500',
			timeout: 5000,
			type: 'sequence',
			containerheight: '125px'
		});
		
		// ----- Feed back -----
		$('.slide-out-div').tabSlideOut({
                	tabHandle: '.handle',    	//class of the element that will be your tab
                 	imageHeight: '92px',            //height of tab image
                 	imageWidth: '38px',             //width of tab image    
                 	tabLocation: 'left',            //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: '200px',                //position from the top
                	fixedPosition: true            //options: true makes it stick(fixed position) on scroll
             	});
	
	}
);
