$(document).ready(function(){
	$('#top-gallery').cycle({ 
		fx:     'fade',
                startingSlide: Math.floor(Math.random()*3),
		speed:  '1000', 
		timeout: '5000',
                pause: 1,
                pauseOnPagerHover: 1,
		next:   '#top-gallery-next', 
		prev:   '#top-gallery-prev',
		pager:  '#video-stories-list',
		pagerAnchorBuilder: function(idx, slide) { 
			// return selector string for existing anchor
			return '#video-stories-list li:eq(' + idx + ') a';
		}
	});
	$('#video-stories-list li a').click(function(){
            window.location = $(this).attr('href');
        });
        $('#video-stories-list li a').hover(function(){
            var tmp = $(this).parent().index();
            $('#top-gallery').cycle(tmp);
        });
});
