﻿function GetArticleListByNodeId(Nodeid,Index) {
    var url = '/ShopVistaAjax.aspx?type=articlelist&nodeid=' + Nodeid;
    var pars = "";
    var myAjax = new Ajax.Request(url, { method: 'post', postBody: pars, onSuccess: AjaxGetResult, onFailure: function() { alert('error') }
});

for (var i = 0; i <= 6; i ++) {
    if (i == Index) {

        document.getElementById('Title' + Index).style.backgroundImage = "url(/skin/redromance/images/adviser_07.gif)";
    } else {
  document.getElementById('Title' + i).style.backgroundImage = "url(/skin/redromance/Images/adviser_10.gif)";
    }
}
}

function AjaxGetResult(originalRequest) {
  
    $('ArticleContent').innerHTML ="<ul>"+ originalRequest.responseText+"</ul>";
}


