/**
 *  Home Module Functionlality
 *
 *  © 2010, Survey Monkey, LLC
 **/
 
 if(jQuery){
     $(document).ready(
        function(){
            $('.hero-photo-container').cycle(
                {
                    fx: 'fade',
                    timeout: 60000,
                    speed: 1000,
                    sync: 0,
                    //fit: 1,
                    pauseOnPagerHover: true,
                    pause: true,
                    fastOnEvent: 350,
                    pager: "ul.hero-navigation",
                    pagerAnchorBuilder: function(index, element){
                        var heroNavList = $('.bd .hero-navigation li');
                        
                        return heroNavList[index];
                    },
                    pagerEvent: 'mouseover'
                }
            );
        }
     );
 }

