Javascript String dasharize()
dasharize()
String.prototype.dasharize = function(){ var that = this.split("_"); return that.join("-"); };