$(document).ready(function() {
	$('#show').before('<ul id="thumbs">').cycle({ 
	    speed:  2500,
	    timeout: 7000, 
	    pause: 1,
	    random: 1,
	    pager: '#thumbs',
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
		    var img = $(slide).children().eq(0).attr("src");
		    return '<li><a href="#"><img src="' + img + '" width="26" height="15" /></a></li>'; 
		} 
	});
	$('.video').embeddables();
});
