(function($) {
	$(document).ready(function(){
		jQuery("#mt-newsite-form #edit-submit").bind('click', function(){
			$(this).attr('disabled', true);
			return false;
		});
		$('#edit-field-help-home').bind('click', function(){
			$.ajax({
				'url':  '/site/'+$(this).val()+'/data',
				'data': 'help_home='+$(this).attr('checked')
			});
		})
	});

})(jQuery);
;

