box_and_date_content = ''
+ '<div id="box_container" style="visibility: hidden;">'
+ '	<div id="box1" style="left: 10%; top:40px;" class="box">'
+ '		EVENT 1'
+ '	</div>'
+ '	<div id="box2" style="left: 20%; top:40px;" class="box">'
+ '		EVENT 2'
+ '	</div>'
+ '	<div id="box3" style="left: 30%; top:40px;" class="box">'
+ '		EVENT 3'
+ '	</div>'
+ '	<div id="box4" style="left: 40%; top:40px;" class="box">'
+ '		EVENT 4'
+ '	</div>'
+ '	<div id="box5" style="left: 50%; top:40px;" class="box">'
+ '		EVENT 5'
+ '	</div>'
+ '	<div id="box6" style="left: 60%; top:40px;" class="box">'
+ '		EVENT 6'
+ '	</div>'
+ '	<div id="box7" style="left: 70%; top:40px;" class="box">'
+ '		EVENT 7'
+ '	</div>'
+ '	<div id="box8" style="left: 80%; top:40px;" class="box">'
+ '		EVENT 8'
+ '	</div>'
+ '</div>'
+ '<div id="date_container" style="visibility: hidden;">'
+ '	<div id="date1" style="left: 10%; top:150px;" class="date">'
+ '		DATE1'
+ '	</div>'
+ '	<div id="date2" style="left: 20%; top:150px;" class="date">'
+ '		DATE2'
+ '	</div>'
+ '	<div id="date3" style="left: 30%; top:150px;" class="date">'
+ '		DATE3'
+ '	</div>'
+ '	<div id="date4" style="left: 40%; top:150px;" class="date">'
+ '		DATE4'
+ '	</div>'
+ '	<div id="date5" style="left: 50%; top:150px;" class="date">'
+ '		DATE5'
+ '	</div>'
+ '	<div id="date6" style="left: 60%; top:150px;" class="date">'
+ '		DATE6'
+ '	</div>'
+ '	<div id="date7" style="left: 70%; top:150px;" class="date">'
+ '		DATE7'
+ '	</div>'
+ '	<div id="date8" style="left: 80%; top:150px;" class="date">'
+ '		DATE8'
+ '	</div>'
+ '</div>'
+ '';

game_screen = ''
+ '<div id="name_container" style="top:0px; width: 100%;">'
+ '	<table border="0" width="100%">'
+ '		<tr>'
+ '		<td width="20%" valign="top" align="left"><span id="p1_name"></span> - <span id="p1_score"></span></td>'
+ '		<td width="60%" valign="top" align="center">'
+ '			<strong><input type="button" id="new_game_button" value="New Game?" onclick="new_game()">'
+ '			<span id="turn_timer"></span> '
+ '			<input type="button" id="check_answer_button" value="Check Answer" onclick="check_answer(\'\')"></strong>'
+ '		</td>'
+ '		<td width="20%" valign="top" align="right"><span id="p2_name"></span> - <span id="p2_score"></span></td>'
+ '		</tr>'
+ '	</table>'
+ '</div>'
+ '<div id="box_and_date_container">'
+ '</div>'
+ '';


setup_screen = ''
+ '<table summary="Intro Screen" border="0" width="750" cellspacing="0" cellpadding="0" align="center">'
+ '	<tr><td valign="top">'
+ '	<p><big><strong>Welcome to Timeline!</strong></big> <p>Get ready to take the historic event challenge!</p>'
+ '	</td><td valign="top">'
+ '	<p><strong>Players:</strong><br>'
+ '	<label><input type="radio" name="players" value="1" checked> One Player</label><br>'
+ '	<label><input type="radio" name="players" value="2"> Two Players</label></p>'
+ '	</td><td valign="top">'
+ '	<p><strong>Level:</strong><br>'
+ '	<label><input type="radio" name="level" value="us-easy" checked> Revolutionary War (Easy)</label><br>'
+ '	<label><input type="radio" name="level" value="us-hard"> Revolutionary War (Hard)</label><br>'
+ '	</td></tr>'
+ '	<tr><td colspan="3" align="center">'
+ '	<p><input type="button" class="submitbutton" value="Begin Game" onclick="start_game();">'
+ '	</p>'
+ '	</td></tr>'
+ '</table>'
+ '';
