hola, para ver si un check esta o no activo puedes obtener sus propiedades checked, algo similar a esto:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script language="javascript" type="text/javascript" src="extras/js/jquery/jquery-1.2.6.min.js.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$('input#cubito').click(function () {
if ($(this).is(':checked') == true)
$("#mensaje").html("marcado")
else
$("#mensaje").html("no marcado")
})
})
function set_checked(checked){
$('input#cubito').attr('checked', checked);
}
</script>
</head>
<body>
<p>
<form id="formulario">
<input type="checkbox" id="cubito" />
<input type="button" value="marcar" onclick="set_checked(true)" />
<input type="button" value="no marcar" onclick="set_checked(false)" />
</form>
</p>
<div id="mensaje"></div>
</body>
</html>