	$(document).ready(function() {
		$('#slide_container').cycle({
			fx: 'fade',
			timeout: 0,
			pager: '#timeline_controls',
			pagerAnchorBuilder: function(idx, slide) {
			// return sel string for existing anchor
			return '#timeline_controls li:eq(' + (idx) + ') a';
			} 
		});
		
		$('.timeline_marker').hover(
			  function () {
				var thisHREF = $(this).attr('data-url');
				$(thisHREF).fadeIn();
				
			  },
			  function () {
				var thisHREF = $(this).attr('data-url');
				$(thisHREF).fadeOut();
			  }
			);
			
	});
