<%= cal.locale.time %>
		<%= cal.locale.events %>
	 
	<% if(all_day.length) {%>
		
			<%= cal.locale.all_day %>
			
				<% _.each(all_day, function(event){ %>
					
				<% }); %>
			
 
	<% }; %>
	<% if(before_time.length) {%>
		
			<%= cal.locale.before_time %>
			
				<% _.each(before_time, function(event){ %>
					
				<% }); %>
			
 
	<% }; %>
	
		
			<% for(i = 0; i < hours; i++){ %>
				
					<% for(l = 0; l < cal._hour_min(i); l++){ %>
						
				<% }; %>
				
			<% }; %>
		
		
		<% _.each(by_hour, function(event){ %>
			
		<% }); %>
	
 
	<% if(after_time.length) {%>
	
		<%= cal.locale.after_time %>
		
			<% _.each(after_time, function(event){ %>
			
			<% }); %>
		
 
	<% }; %>