Date.format = 'dd-mm-yyyy';
//alert($(document).getUrlParam("date"));
$(function()
{
	$('.turn-me-into-datepicker')
		.datePicker({inline:true,startDate:'01-01-2008'})
		.bind(
			'dateSelected',
			function(e, selectedDate, $td)
			{
				var a = selectedDate.getYear() - 100 + 2000;
				var m = selectedDate.getMonth() + 1;
				var d = selectedDate.getDate();
				$('#date').val(selectedDate.asString());
				$('#formu').submit();
			}
		);
		
		
		//$('.turn-me-into-datepicker').dpSetStartDate('01-01-2009');
		if ($(document).getUrlParam("date")!=null)
			$('.turn-me-into-datepicker').dpSetSelected($(document).getUrlParam("date"));
		$('.turn-me-into-datepicker').dpDisplay();
});
