//frontend jquery.document.ready.js
//replaces <body onload="..."


jQuery(document).ready(function() {	
	jQuery('#ArrivalDate').datepicker({
		minDate: 0,
		defaultDate: 0,
        showOn: 'both',
        buttonImageOnly: true,
		dateFormat: 'm/d/yy',
		buttonImage: '/_images/_buttons/btn_calendar2.gif'
	 
    });	



//put additional functions here.
});


 