/**
 * @author himn1
 * @since	 Version 1.5.2
 */

$(document).ready(function(){
			
	$("#reg_wedding_date").datepicker( $.extend({}, $.datepicker.regional["pl"], {     
		showStatus: true,     
		showOn: "both",     
		buttonImage: base_url+"images/date.gif",     
		buttonImageOnly: true,
		yearRange: '-0:+5'
	}));
	
	$(':checkbox[name=agree]').click( function() {
		$(this).attr( 'checked', 'checked' )
	})
	
});