
    $(function () {
        $("#copyvalues").click(function () {
            $('#panel:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel2:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel3:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel4:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel5:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel6:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel7:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel8:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            $('#panel9:visible input').each(function (i) {
                if ($(this).val() == "")
                    $(this).val($('.quick_quote_wide_weight_strip input').eq(i).val());
            });
            return false;
        });
    });
