$j(function() {
    //start

    $j('#slideshow').cycle(
	{
	    fx: 'scrollLeft',
	    speed: 'medium',
	    timeout: 8000,
	    pause: 1,
	    pauseOnPagerHover: 1,
	    pager: '.rotator_nav',
	    pagerEvent: 'mouseover',
	    pagerAnchorBuilder: function(idx, slide) {
	        // return selector string for existing anchor
	        return '.rotator_nav li:eq(' + idx + ') a'; 
	    }
	});

    //closing
});
