$(document).ready(function ()
{	
	//datepicker on the main menu

	cul= $('#culture').val();
	$('.etDateGo').datepicker({
		dateFormat: 'dd/mm/yy', 
		minDate: Date.today().addDays(1),
		showOn: 'both',
		firstDay: 1,
		changeMonth: true,
		changeYear: true,	
		buttonImageOnly: true,
		numberOfMonths: 3,
		inline: true,
		culture: 'fr',
		buttonImage: '/sf/sf_admin/images/date.png' 

	});

	
});

