$(document).ready(function() {
	$('input').hint();
});

function toggleCheckAll () {
	$("input[@type='checkbox']").each(function() {
		this.checked = !this.checked; // or, to toggle
	});
}
