(function($){

$(document).bind('popup-content-changed', function(e, c){
	$(c).find("input.date").datepicker({
		changeYear: true,
		dateFormat: 'yy-mm-dd',
		maxDate: '+0',
		yearRange: '-60'
	});
	var _route_autocompletes = $("#route-autocompletes").text();
	if (_route_autocompletes)
		var _sources = $.parseJSON("[ "+_route_autocompletes+" ]");
	if (_sources) $(c).find("input.route-autocomplete").autocomplete({
		source: _sources,
		minLength: 0
	}).focus(function(){// show menu on empty focus
		//console.info("value is '"+this.value+"'");
		if (this.value == "")
			$(this).trigger('keydown.autocomplete');
	});
});

})(jQuery);

