function initPage() {
  $("#scroller").scroller({imagepath: 'img/scroller'});
}

function scrollTo(a) {
  if ($("#scroller").scroller_isVertScrollVisible()) {
    var cid = a.id.substring(1);
    var a2 = N$(cid);
    var pos = a2.offsetTop;
    $("#scroller").scroller_setVertPosPx(pos);
  }
  return false;
}

function showRetailers(a, countryid) {
  for (var i=0; i < N$('countryul').childNodes.length; i++) {
    N$('countryul').childNodes[i].childNodes[0].style.display = 'none';
    N$('countryul').childNodes[i].childNodes[1].style.display = 'inline';
  }
  a.parentNode.style.display = "none";
  a.parentNode.previousSibling.style.display = "inline";

  RetailersPage.GetRetailers(countryid, showRetailers2);
}


function showRetailers2(response) {
  N$('alphabetdiv').innerHTML = response.value[0];
  N$('retailerdiv').innerHTML = response.value[1];
  $("#scroller").scroller_contentChanged();
}