function GetCalc(id){
    var divs = $("#calc div");
    jQuery.each(divs, function(i, n) {
        if(n.id != "price001"){
            $("#"+n.id).slideUp("slow");
            if(n.id == id.value) $("#"+n.id).slideToggle("slow");            
        }   
    });
}
function GetPriceValue(id){
    var pr = $('#price001'); 
    var radio = $("#calc input[type='radio']");
    var price = 0;
    jQuery.each(radio, function(i, n) {
        if(n.checked == true){
            price += Math.round(n.value);
        }
    });
    var str = "стоимость услуг: " + price + " в день/ " + Math.round(price/8) + " в час";
    pr.html(str); 
}
