﻿var $j = jQuery.noConflict();

    $j('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
  			speed:  'slow',
		   timeout: 6000,
		   pager:  '.slidenav',
		   pagerAnchorBuilder: function(idx, slide) {
			  return '<a href="#" id="featlink' + (idx+1) + '">●</a>';
		   }


	});
