/********************************************

Amplifier Content Marketing
jQuery Feature Module

Version: 1.0
Required Plugins: jquery.cycle
Author: Poccuo (http://www.poccuo.com)        	

*******************************************/

$(function() {
	
	$(".page").show();		
	$("#pageControls").show();
    
    $('#featureModule').cycle({
		fx: 'fade', 
		pause: 1, // Turn Hover Pause On
		timeout: 8000, // in Milliseconds
		speedIn: 600, // in Milliseconds
		speedOut: 150, // in Milliseconds
		delay: 1000,     // in Millieconds
		cleartype:  1,  
		pager:  '#pageButtons',
		pagerAnchorBuilder: function(idx, slide) { 
			return '<li><a href="#"><span style="display:none;">Page ' + idx + '</span></a></li>'; 
		}
	});

});