// JavaScript Document
$(document).ready(function() {

	// Date picker
  $("#datepicker").datepicker({ onSelect: function(dateText, inst) { document.getElementById('booking_date').value=dateText; }});
  $("#datepicker").datepicker('option', 'dayNamesMin', ['Sø','Ma','Ti','On','To','Fr','Lø']);
  $("#datepicker").datepicker('option', 'firstDay', 1);
  $('#datepicker').datepicker('option', 'dateFormat', 'yy-mm-dd');

	// Booking form
	$("#booking_form").validate({
		rules: {
			booking_person1: {},
			booking_person2: {},
			booking_person3: {},
			booking_person4: {},
			booking_person5: {},
			booking_person6: {},
			booking_person7: {},
			booking_speaker: {},
			booking_tip:     {},

			booking_date:    {required: true},
			booking_name:    {required: true},
			booking_tel:     {required: true},
			booking_place:   {required: true},
			booking_email:   {required: true},
			booking_theme:   {},
			booking_comment: {}
		},
		messages: {
			booking_date:  "Vennligst velg en dato...",
			booking_name:  "Vennligst fyll ut navn...",
			booking_tel:   "Vennligst fyll ut telefonnr...",
			booking_place: "Vennligst fyll ut sted...",
			booking_email: "Vennligst fyll ut epostadresse..."
		}
	});

});
