// JavaScript Document
$(document).ready(function() {
		
	$('.cell').click(function(event){	
	if($(this).find(':checkbox').is(':checked'))
		{
		$(this).addClass("active-cell");
		$(this).find(':checkbox').attr('checked', true); 
		}
		else {  $(this).removeClass("active-cell"); $(this).find(':checkbox').attr('checked', false); }
	})
	

	
});
