TODO:
Have you ever wanted to check a var against a string and ensure case is not an issue?
SOLUTION:
var myVar = $('.myCheckboxClass').find(":checked").val().toLowerCase();
NOTES:
This script will find my checkbox by class name, as well as checked, and give me the value in lower case.