function _random ()  {
var trm = Math.round((this.length - 1) * (Math.random() ) );
return (this[trm]);
}
Array.prototype.random = _random;

function _arbr () {
return (this.join("<BR>"));
}
Array.prototype.arbr = _arbr;

// color to green as example ;
function _greenstring () {
return (this.fontcolor("green"));
}
String.prototype.greenstring = _greenstring;


function _first () {
return this.slice(0,1);
}
Array.prototype.first = _first;

function _bf () {
return this.slice(1);
}
Array.prototype.bf = _bf;

function _ftored () {
return '"<B>' + this.split(" ").first().toString().fontcolor("red") + " " + this.split(" ").bf().join(" ").fontcolor("blue") + '</B>"'
;
}
String.prototype.ftored = _ftored;
