$(document).ready(function(){
    $('input:text[name=titulo]')[0].value = 60;
    
    $("input[@name=prepago_or_contrato]").click(function(){
        var p_o_c = $("input[@name=prepago_or_contrato]:checked").attr('id');

        $('#questions').hide('slow');
        //$('#rates').hide('slow');
        //$('#more_phones').hide('slow');
        //$('#prepago_rate').hide('slow');
        $.get('/rates/get_questions', {kind_of_rate: p_o_c}, null, 'script');
    });


    $('.how_much').change(function(){
        var results = $('.how_much');
        var ids = new Array();
        var values = new Array();

        for(var i = 0; i < results.size(); i++){
            values.push(results[i].value);
            ids.push(results[i].id);
        }

        $('#rates').hide('slow');
        var data = "ids=" + ids + "&values=" + values;
        $.post('/rates/update_questions', data, null, 'script');
    });

    $('input[name=more_phones]').click(function(){
        var checked = $('input[name=more_phones]')[0].checked;
        if(checked){
            $('#more_phones').show('slow');
        }
        else{
            $('#more_phones').hide('slow');
        }
    });



});