var productAnchors = {"5":"SRH3500 & SRH3500 sGPS","4":"SRH3800 & SRH3800 sGPS","103":"Radio Manager 2","8":"Crypto Manager","6":"Radio Manager","98":"STP8200","99":"SRG3900","97":"STP8100","100":"SRB8000","10":"STP8000","2":"SRG3500","96":"SRH3900","7":"SRM2000","1":"SRC3300","101":"STP8X"};

function makeSlug(string)
{
	string = string.replace(/[^a-zA-Z0-9_-]+/g, '-');
	string = string.replace(/-+/g, '-');
	return string.toLowerCase();
}

Event.observe(window, 'load', function() {
  var targetDiv = null;
  if ($('articleContent')) {
    targetDiv = $('articleContent');
  }

  if (targetDiv) {
    for (var i in productAnchors) {
      var rgxp = new RegExp(productAnchors[i], 'g');
      targetDiv.innerHTML = targetDiv.innerHTML.replace(rgxp, '<a href="/product/' + i + '/' + makeSlug(productAnchors[i]) + '">' + productAnchors[i] + '</a>');
    }
  }
});
