$(function(){
  if ( $('.cms_edit_container').length == 0 ){
    // CAROUSEL
    $('.gallery-holder ul').cycle({
      pager: '#controls',
      fx: 'fade',
      timeout: 8000,
      cleartype:  1,
      cleartypeNoBg: true,
      pagerAnchorBuilder: function(index, element){
        return ('<li><a href="javascript:void(0);" id="control' + index + '" rel="' + index + '">' + index + '</a></li>');
      }
    });


    $('.switcher .more').click( function(){

      var selectedNavIndex = parseInt( $('#controls .activeSlide a').attr('id').replace(/[^0-9]/g, '')) + 1;
      document.location = $('.gallery-holder ul li:nth-child(' + (selectedNavIndex) + ') a').attr('href');

      return false;
    });

  }

  // load twitter post
  // $('.twitter_feed').soliloquy().twitter( 'highlandspeople', { posts: 1, relative_dates: false });
});

