/* -------------------------------------------------------------
   Goldsteig - General JavaScript
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   .autor         Tobias Liegl (www.tobiasliegl.de)
   .version       0.4
   .url           goldsteig.de
   .timestamp     09/10/2009
   -------------------------------------------------------------	*/

/* Slider */
jQuery(document).ready(function(){
	$(function () {        
		$('.carousel').anythingSlider({
			easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
			delay: 5500,                    // How long between slide transitions in AutoPlay mode
			animationTime: 1000,             // How long the slide transition takes
			buildNavigation: false,          // If true, builds and list of anchor links to link to each slide
			pauseOnHover: false             // If true, and autoPlay is enabled, the show will pause on hover
		});
	});
});