/////////////////////////////////////////////////////////function MHref (){}MHref.prototype = new MHref;//////////////////////////////////////////////////////MHref.prototype.set = function (i){	this.i = i; // starting 0; cuz this is index val...}///////////////////////////////////////////////////////MHref.prototype.href = function (x,y){	// return this.i++; // need inc af return v; this should work..	return ++this.i;}/////////////////////////////////////////////////////