$(function() {
	$("#id_birthday").datepicker( {
		/*showOn : 'both',*/
		minDate: '-99y',
		maxDate: '-18y', 
		changeMonth: true,
		changeYear: true,
		yearRange: "-99:+0",
		selectOtherMonths: true,
	});
	
	$("#id_dateRob").datepicker( {
		/*showOn : 'both',*/
		minDate: '-99y',
		changeMonth: true,
		changeYear: true,
		yearRange: "-99:+0",
		selectOtherMonths: true,
		dateFormat: 'yy-mm-dd',
	});
	
	$('a.lightbox').lightBox({
		imageLoading: '/media/images/lightbox/lightbox-ico-loading.gif',
		imageBtnClose: '/media/images/lightbox/lightbox-btn-close.gif',
		imageBtnNext: '/media/images/lightbox/lightbox-btn-next.gif',
		imageBtnPrev: '/media/images/lightbox/lightbox-btn-prev.gif',
		txtImage: 'Foto',
		txtOf: 'von'
	});

});

