$(document).ready( function(){
	
	/* radio *************************************************************************/
	//naštimamo že označene
	$('input[type=radio]:checked', '.switch').siblings('.radio_input').addClass('selected');
	
	$(".radio_input").click(function() {
        var parent = $(this).parents('.switch');
        $('.radio_input', parent).removeClass('selected');
        $(this).addClass('selected');
        $('input:radio', $(this).parent()).attr('checked', true);
        
        //$('#value').html($('input[name=radio]:checked', $(this).parent()).val() );
    });
    
	/* checkbox **********************************************************************/
	//naštimamo že označene
	$('input[type=checkbox]:checked', '.switch').siblings('.checkbox_input').addClass('selected');
	
    $(".checkbox_input").click(function() {
        if ($(this).hasClass("selected")) {
        	$(this).removeClass('selected');
        	$('input:checkbox', $(this).parent()).attr('checked', false);
        } else {
        	$(this).addClass('selected');
        	$('input:checkbox', $(this).parent()).attr('checked', true);
        }
    });
    
});
