$(document).ready(function() {
	$('#timeline_points li').bind('mouseover', function() {
		$('#timeline_data li').fadeOut();
		var id = $(this).attr('id').replace(/timeline_point_/,'');
		$('#timeline_data_'+id).fadeIn();
	});
	$('#timeline_points li').bind('mouseout', function() {
		var id = $(this).attr('id').replace(/timeline_point_/,'');
		$('#timeline_point_'+id).oneTime('0.1s', 'fade_timeline_data', function() {
			$('#timeline_data_'+id).fadeOut();
		} );
	});
	$('#timeline_data li').bind('mouseover', function() {
		var id = $(this).attr('id').replace(/timeline_data_/,'');
		$('#timeline_point_'+id).stopTime('fade_timeline_data');
	});
	$('#timeline_data li').bind('mouseout', function() {
		var id = $(this).attr('id').replace(/timeline_data_/,'');
		$('#timeline_point_'+id).oneTime('0.1s', 'fade_timeline_data', function() {
			$('#timeline_data_'+id).fadeOut();
		} );
	});
});

