﻿// JavaScript Document
$(document).ready(
	function()
	{
		$('.teamList').innerfade
		({ 
			animationtype:"fade", //Type of animation 'fade' or 'slide' (Default: 'fade'), 
			speed:500,//Fading-/Sliding-Speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal'), 
			timeout:8000,//Time between the fades in milliseconds (Default: '2000'), 
			type: 'sequence',//Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'), 
			containerheight:"250px"// Height of the containing element in any css-height-value (Default: 'auto'),
			//runningclass: //CSS-Class which the container get’s applied (Default: 'innerfade'),
			//children: $("#news>li")//optional children selector (Default: null)
		});
		
		$('#photos').innerfade
		({ 
			animationtype   : "fade",      //Type of animation 'fade' or 'slide' (Default: 'fade'), 
			speed           : 500,         //Fading-/Sliding-Speed in milliseconds or keywords (slow, normal or fast) (Default: 'normal'), 
			timeout         : 3000,        //Time between the fades in milliseconds (Default: '2000'), 
			type            : 'sequence',  //Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'), 
			containerheight : "250px",     // Height of the containing element in any css-height-value (Default: 'auto'),
			//runningclass: //CSS-Class which the container get’s applied (Default: 'innerfade'),
			//children: $("#news>li")//optional children selector (Default: null)
			goNext          : ".photos_next",
			goPrev          : ".photos_prev"
		});
		
	}
)