function shopProductDeliverable() {

}

shopProductDeliverable.showHide = function(productId)
{
    $("shopDeliverableOptions_" + productId).style.display = $("shopDeliverable_" + productId).checked ? "block" : "none";
}

shopProductDeliverable.changeTimes = function(productId, timesSelect)
{
    var times = timesSelect.options[timesSelect.selectedIndex].value;
    $("shopDeliverableDaily_" + productId).style.display   = (times == "daily" || times == "daily_business") ? "block" : "none";
    $("shopDeliverableWeekly_" + productId).style.display  = (times == "weekly") ? "block" : "none";
    $("shopDeliverableMonthly_" + productId).style.display = (times == "monthly") ? "block" : "none";
}

