/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
		$('#date').datepicker({
					inline: true,
					minDate:0,
					changeMonth: true,
					changeYear: true
				});

	$("#dawForm").validationEngine();

		
	});


	$(window).bind("load", function() {
		
	
	});
	
})(jQuery);
