// search for '03/11/2010'
<br />
<b>Notice</b>:  Undefined variable: categoryDisplayString in <b>/mnt/book_direct/releases/20100309234348/button_hook/sites/silver_city_org/jrs_init.js.php</b> on line <b>35</b><br />

function jrs_choose_date(thedate, thedatepicker) {
	arrival = new Date(thedate);
	arrival_day = arrival.getDate();
	arrival_month = arrival.getMonth() + 1; // Jan = 0
	arrival_year = arrival.getFullYear();
	var newUrl = $.query.remove("").set("sDay", arrival_day).set("sMonth", arrival_month).set("sYear", arrival_year).toString();
	newUrl = newUrl.replace(/(sDay|sMonth)=(\d)\b/g, "$1=0$2")
  window.location.search = newUrl;
}

function jrs_show_calendar(code) {
	var now = new Date();
	$.datepicker.dialogDatepicker(now, jrs_choose_date, {
		showOn: 'none',  // no automatic anything!  click only!
		clearText: ' ',
		minDate: now,
		hideglitched: false
	});
}
