﻿// JScript File
$(document).ready(function () {
    $("#cb1").click(function () {
        var hf1 = $("#cb1 input");
        var val1 = hf1.attr('value');
        
        switch(val1)
        {
            case "1":
                this.className = "cbUnChecked";
                hf1.attr("value", "0");
                break;
            case "0":
                this.className = "cbChecked";
                hf1.attr("value", "1"); 
                break;             
        }
    });
    $("#cb2").click(function () {
        var hf2 = $("#cb2 input");
        var val2 = hf2.attr('value');
        
        switch(val2)
        {
            case "1":
                this.className = "cbUnChecked";
                hf2.attr("value", "0");
                break;
            case "0":
                this.className = "cbChecked";
                hf2.attr("value", "1"); 
                break;             
        }
    });        
});