/* $Id: index.js 15469 2008-12-19 06:34:44Z testyang $ */
var best_str = new Object();
var new_str = new Object();
var hot_str = new Object();

function init_rec_data()
{
    best_str[0] = document.getElementById("show_best_area") == null ? '' : document.getElementById("show_best_area").innerHTML;
    new_str[0] = document.getElementById("show_new_area") == null ? '' : document.getElementById("show_new_area").innerHTML;
    hot_str[0] = document.getElementById("show_hot_area") == null ? '' : document.getElementById("show_hot_area").innerHTML;
}

function get_cat_recommend(rec_type, cat_id)
{
    if (rec_type == 1)
    {
        if (typeof(best_str[cat_id]) == "string")
        {
            document.getElementById("show_best_area").innerHTML = best_str[cat_id];
            return;
        }
    }
    else if (rec_type == 2)
    {
        if (typeof(new_str[cat_id]) == "string")
        {
            document.getElementById("show_new_area").innerHTML = new_str[cat_id];
            return;
        }
    }
    else
    {
        if (typeof(hot_str[cat_id]) == "string")
        {
            document.getElementById("show_hot_area").innerHTML = hot_str[cat_id];
            return;
        }
    }
    Ajax.call('index.php?act=cat_rec', 'rec_type=' + rec_type + '&cid=' + cat_id, cat_rec_response, "POST", "TEXT");
}

function cat_rec_response(result)
{
    var res = result.parseJSON
}
