$(document).ready ( function() {
	$('input[rel=date]').each ( function() {
		$(this).attachDatepicker({
			clearText: '<span>Очистить поле</span>', // Display text for clear link
			closeText: '<img src="/images/calendar/close.gif" alt="закрыть">', // Display text for close link
			currentText: '<span>сегодня</span>', // Display text for current month link
			prevText: '&#x3c;<span>пред</span>', // Display text for previous month link
			nextText: '<span>след</span>&#x3e;', // Display text for next month link
			yearRange: "2009:2015"
		});
	});
});
