jQuery.noConflict();

jQuery(document).ready(function(){

    jQuery('#image-dock').after('<ul id = "image-controls"><li class="image-controls-title">CARE UNLIMITED</li>').cycle({ 
        fx:     'fade', 
        speed:  'slow',
        pager:  '#image-controls',
        autostop: 1, 
        pagerEvent: 'mouseover',
        allowPagerClickBubble: true,
        pagerAnchorBuilder: function(idx, slide) { 
            return '<li><a href="/sites/home#service'+ idx +'">' + slide.alt + '</a></li>'; 
            
        },
        end:  function(options){
            jQuery('#image-dock').cycle(0);
        }
 
    });

});
