jQuery(document).ready(function(){
	

if(document.getElementById('rotator') != null) { 

	/* Feature Image Cycle */
	jQuery('#rotator').cycle({ 
		fx:     'fade', 
		next:   '#nextHighlight', 
		prev:   '#prevHighlight',
		timeout: 10000,
		speed: 100
	});
}
	
});