

var fluid = {
Cycle: function(){
	
	$('.bannergroup').cycle({
			fx:      'fade',
			speed:    600, 
			timeout:  8000,
			easing: 'easeInOutSine'
		});
}
}
jQuery(function ($) {

	if($(".bannergroup").length){fluid.Cycle();}
	
	
	

	
});