$(document).ready( function() 
{
	// DOUBLE CLICK FIX 
	$('#slidePager a').click(function(){
		$(this).parents('li').removeAttr('onclick');
	});
	$('#slideImages ol').cycle({
		fx:     'fade',
		speed:   500, 									// speed of the transition (any valid fx speed value)
		timeout: 4000, 									// milliseconds between slide transitions (0 to disable auto advance) 
		pause:   1, 									// true to enable "pause on hover" 
		pager: 	'#slidePager', 							// id of element to use as pager container 
		pagerAnchorBuilder: function(idx, slide) 
		{ 
		return '#slidePager li:eq(' + idx + ')';		// return selector string for existing anchor 
		} 
	});
}); 



