$(document).ready(function() {   
	$('#human_check').val(42);
	toggleFields(['human_check'],false);
	
	$('#name, #surname, #company').change(function(){
		$("#shipping-"+$(this).attr('name')).val($(this).val());
	});
	
	
});


function toggleFields(objects, show) {
    $(objects).each(function(index, obj){
       if (show) {
         $("#" + obj + "-label").show();
         $("#" + obj + "-element").show();
       } else {
         $("#" + obj + "-label").hide();
         $("#" + obj + "-element").hide();
       }
    });	
 }

