/**
* Populates all the hours textbox entries to match the monday entry.
*/
function applyAllHours(){
	normalizeHours('#monday');	
	
	var monday = $("#monday").val();
	
	if (!monday || monday == '')
		return;
	
	// select all the input box children of the .day class that are greater than monday
	// and set them to the value of monday	
	$(".day").children("input:gt(0)").val(monday);
	
	// set the focus to sunday text box
	$('#sunday').trigger('focus');
}
