// JavaScript Document

  $(document).ready(function() {
 $('#vids').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#next2', 
    prev:   '#prev2' 
});

  $(document).ready(function() {
  $('#slideshow').before().cycle({ 
    fx:     'fade', 
    speed:  2000, 
    timeout: 5000, 
    pager:	'#pager',
	pagerAnchorBuilder: function(idx, slide) {

            // return sel string for existing anchor

            return '#pager li:eq(' + (idx) + ') a';

        }

});
  });
  });
