/* (c) 2011 by Roger Sennert, www.bluestarsoftware.de */
	var bimagesliderAnimation = 'scrollHorz';
	var bimagesliderTimeout		= 5000;
	
	$(function() {	 		
		$('.tx-bimageslider-pi1-slider').cycle({ 
			fx: 			bimagesliderAnimation, 	// 'scrollHorz', // 'scrollRight', fade', 'turnDown', scrollHorz', 'growX', 'blindX'
		 	speed:    1000,
		 	pager:		'#tx-bimageslider-pi1-nav',
  		timeout:  bimagesliderTimeout,		// 5000,
  		after:    function() {}
		 });
		$('.tx-bimageslider-pi1-sliderSection').hover(
			function(){ $('.tx-bimageslider-pi1-slider').cycle('pause'); },
			function(){ $('.tx-bimageslider-pi1-slider').cycle('resume'); }
		);
	});

