$(function() {

	
	$("form .inline-datepicker .datepicker").datepicker({
			dateFormat:'mm-dd-yy',
			onSelect: function(dateText) {
				exploded = dateText.split("-");
				$("#"+$(this).attr("rel")+" .month input").val(exploded[0]);
				$("#"+$(this).attr("rel")+" .day input").val(exploded[1]);
				$("#"+$(this).attr("rel")+" .year input").val(exploded[2]);
				$(this).hide();
			}
		}).hide();
	$("form .inline-datepicker .datepicker-icon").click(function() {
		$(".datepicker", $(this.parentNode)).toggle();
	});
	
});