$(document).ready(function() {
	$("input[@type='text'].dateTimePicker, input[@type='text'].datePicker").each(function(){
		var form = $(this).parent("form").get(0);
		var button = document.createElement('button');
		$(button).html(" ... ");
		$(button).attr("id", $(this).attr("id") + "-button");
		$(button).addClass("jscalendar-icon");
		$(this).after(button);
		$(this).parent().addClass("jscalendar");
	})
	.parent()
	.find(".dateTimePicker").each(function(){
		Calendar.setup({
			inputField  : $(this).attr("id"),
			ifFormat    : '%Y-%m-%d %H:%M:%S',
			button      : $(this).attr("id")+"-button",
			showsTime   : true,
			timeFormat  : '24'
		});
	})
	.end()
	.find(".datePicker").each(function(){
		Calendar.setup({
			inputField  : $(this).attr("id"),
			ifFormat    : '%Y-%m-%d',
			button      : $(this).attr("id")+"-button",
			showsTime   : false
		});
	});
});
