(function ($) {
	$(document).ready(function() {
		$('.view-id-homepage .view-content').before('<ul id="nav">').cycle({ 
		    fx:     'fade', 
		    speed:  3000, 
		    timeout: 3000, 
		    pager:  '#nav', 
		     
		    // callback fn that creates a thumbnail to use as pager anchor 
		    pagerAnchorBuilder: function(idx, slide) { 
		        return '<li><a href="#"><img src="' + slide.src + '" width="110" height="75" /></a></li>'; 
		    } 
		});
		
		$('.block-block-12 .media-image').click(function() {
			$('#block-views-homepage-video-block').fadeToggle('slow');
			});
	});
})(jQuery);
