/* RELATIVE FIXED DIV
======================================================================================================== */

	$(function() {
    var offset = $("#form-fixed").offset();
    var topPadding = 15;
    $(window).scroll(function() {
    if ($(window).scrollTop() > offset.top) {
    $("#form-fixed").stop().animate({
    marginTop: $(window).scrollTop() - offset.top + topPadding
    }), 0;
    } else {
    $("#form-fixed").stop().animate({
    marginTop: 0
    }); }; }); });


/* BEAUTIFULL CHECKBOXES
======================================================================================================== */
    function setupLabel() {
        if ($('.label_check input').length) {
            $('.label_check').each(function(){ 
                $(this).removeClass('c_on');
            });
            $('.label_check input:checked').each(function(){ 
                $(this).parent('label').addClass('c_on');
            });                
        };
        if ($('.label_radio input').length) {
            $('.label_radio').each(function(){ 
                $(this).removeClass('r_on');
            });
            $('.label_radio input:checked').each(function(){ 
                $(this).parent('label').addClass('r_on');
            });
        };
    };
    $(document).ready(function(){
        $('body').addClass('has-js');
        $('.label_check, .label_radio').click(function(){
            setupLabel();
        });
        setupLabel(); 
    });
