<html>
<head>
<title>Depot Timeline</title>
<style>
.timeline-event-bubble-title,
.timeline-event-bubble-body,
.timeline-event-bubble-time {
font-size: 10pt;
}
.depot-timeline {
font-family: Trebuchet MS, Helvetica, Arial, sans serif;
font-size: 8pt;
border: 1px solid #aaa;
height: 500px;
}
#search {
margin-top:10px;
margin-bottom:15px;
}
</style>
<script
src="http://simile.mit.edu/timeline/api/timeline-api.js"
type="text/javascript"></script>
<script src="depot_timeline.js" type="text/javascript"></script>
</head>
<body onresize="onResize()" onload="onLoad()">
<div id="search">
Depot path: <input id="path" type="text" style="width:300px;"/>
<input type="button"
value="Generate Timeline"
onclick="generateTimeline();"/>
</div>
<div class="depot-timeline" id="timeline">
</div>
</body>
</html>