doctype html
html(lang="en")
	head
		title Timenav Height Example
		meta(charset='utf-8')
		meta(name='description', content='TimelineJS Embed')
		meta(name='apple-mobile-web-app-capable', content='yes')
		meta(name='apple-touch-fullscreen', content='yes')
		meta(name='viewport', content='width=device-width, initial-scale=1.0, maximum-scale=1.0')
		// CSS
		link(rel='stylesheet', href='../css/timeline.css?v1')
		//FONT
		link(rel='stylesheet', href='../css/fonts/font.default.css?v1')
		// Style
		style.
			html, body {
				height:100%;
				width:100%;
				padding: 0px;
				margin: 0px;
			}
			#timeline1, #timeline2, #timeline3 {
				height:700px;
				width:100%;
				margin-bottom:50px;
				
			}

		// HTML5 shim, for IE6-8 support of HTML elements
		//if lt IE 9
			script(src='https://html5shim.googlecode.com/svn/trunk/html5.js')

	body
		h2(style="margin-left:50px") 50%
		div#timeline1

		h2(style="margin-left:50px")  75%
		div#timeline2

		h2(style="margin-left:50px")  25%
		div#timeline3
		
		// JavaScript
		script(src='../js/timeline.js')
		script.
			var timeline_01 = new TL.Timeline('timeline1', 'marktwain_juked.json', {
				timenav_height_percentage:50,
				is_embed:true
			});
			var timeline_02 = new TL.Timeline('timeline2', 'marktwain_juked.json', {
				timenav_height_percentage:75,
				is_embed:true
			});
			var timeline_03 = new TL.Timeline('timeline3', 'marktwain_juked.json', {
				timenav_height_percentage:25,
				is_embed:true
			});