$(document).ready(function() {
	
	var monthNames = ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj','Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'];
	var monthNamesShort = ['Sij','Velj','Ožu','Tra','Svi','Lip', 'Srp','Kol','Ruj','Lis','Stu','Pro']
	
	$('#set_date').click(function(event) {
	
		var year = parseInt($('#date_birth_date1_year').val());
		var month = parseInt($('#date_birth_date1_month').val());
		var day = parseInt($('#date_birth_date1_day').val());
		
		$.cookies.set("astroloski_centar_datum_rodjenja", year + "-" + month +"-" + day);
		
		$('#wheel_date_day').text(day);
		$('#wheel_date_month').text(monthNamesShort[month-1]);
		$('#wheel_date_year').text(year);
		
	});
	
});

