$j(function()
	{
		
		var todaysDate = new Date();
		
		
		$j(".conference-calendar-value")
			.val((todaysDate.getMonth() + 1) + "/" + todaysDate.getDate() + "/" + todaysDate.getFullYear())
			.datepicker({
				showOn: "both",
				buttonImage: "/files/images/conference_form/calendar.gif",
				buttonImageOnly: true,
				minDate: new Date(2009, 01, 01),
				maxDate: new Date(2011, 12, 31),
				onSelect: function (date, inst)
							{
								var dateParts = date.split("/");
								$j("#"+inst.id+"-day").val(dateParts[1]);
								$j("#"+inst.id+"-month").val(dateParts[0]);
								$j("#"+inst.id+"-year").val(dateParts[2]);
							}
			}
		);
	
	});
