bartonom,
то что далее это вас просили сделать ну и решение вашей проблемы
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function(){
$('#checkbox_all').click(function(event) {
$('.current').prop('checked', $(this).prop('checked'))
});
});
</script>
</head>
<body>
<input type='checkbox' name='all' id='checkbox_all' /> <br /><br />
<input type='checkbox' class='current' name='checkBox[0]' id = '0' value='' /><br />
<input type='checkbox' class='current' name='checkBox[1]' id = '1' value='' /><br />
<input type='checkbox' class='current' name='checkBox[0]' id = '2' value='' /><br />
</body>
</html>