try { Event.observe( window, 'load', function() {

  promoListsStyle();
  promoGroupStyle();

} ); }
catch ( e ) { }


function promoListsStyle() {
  var promoLists = $$('div.promoList');
	for (var i=0; i< promoLists.length; i++) {
    var thisPromoLists = promoLists[i].getElementsByTagName("li");
    for (var j=0; j< thisPromoLists.length; j++) {
      if (j == thisPromoLists.length-1) {
        thisPromoLists[j].className += "noBorder";
      }
    }
  }
}

function promoGroupStyle() {
  var thisPromoGroups = $$('div.promoGroup div.promo');
  for (var i=0; i< thisPromoGroups.length; i++) {
    if (i == thisPromoGroups.length-1) {
      thisPromoGroups[i].className += "noBorder";
    }
  }
}