/*
 *  Version       : v1.0
 *  Author(s)     : Niels van Esch (n.vanesch /[at]/ extrawebdesign.nl)
 *  Company       : Extra-Webdesign
 *  Created on    : September 2010
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

$(document).ready(function(){

    function updateCheckboxStyled()
    {
        $("div.checkboxstyled_checkbox").each(function(index){
            if($("input.checkboxstyled", this).attr("checked") == true)
            {
                $(this).removeClass("inactive");
                $(this).addClass("active");
            }
            else
            {
                $(this).removeClass("active");
                $(this).addClass("inactive");
            }
        });
    }

    $("input.checkboxstyled").each(function(index){

        $(this).wrap('<div class="checkboxstyled_checkbox" />');
        $(this).parent().wrap('<label for="'+$(this).attr("id")+'" />');
        $(this).fadeTo(0,0); 
    });

    $("div.checkboxstyled_checkbox").bind("mousedown keydown focus", function(){
        $(this).addClass("keydown");
    });

    $("div.checkboxstyled_checkbox").bind("mouseup keyup blur", function(){
        $(this).removeClass("keydown");
    });

    $("input.checkboxstyled").click(function(){
        updateCheckboxStyled();
    });

    updateCheckboxStyled();
});
