var fluid = {
Cycle: function(){
	$('#galspot').cycle({
			fx:      'fade',
			speed:    600, 
			timeout:  8000,
			easing: 'easeInOutSine'
		});
},
Cycle2: function(){
	$('#mfeatcyc').cycle({
			fx:      'fade',
			speed:    600, 
			timeout:  5000,
			easing: 'easeInOutSine'
		});
}
}
jQuery(function ($) {
	
	if($("#galspot").length){fluid.Cycle();}
	if($("#mfeatcyc").length){fluid.Cycle2();}
	
	


	
});
