/////////////////////////////////////////////////////////function MHrefV (){}MHrefV.prototype = new MHrefV;//////////////////////////////////////////////////////// temp dup..MHrefV.prototype.set = function (i){	// this.i = i; // starting 0; cuz this is index val...	this.i = 0; // always cuz takes only hrefData on one page.. not all}///////////////////////////////////////////////////////MHrefV.prototype.conf = function (hrefData){	this.hrefAr = hrefData.split(' ');
	///this.hrefData = hrefData; /// 8-18-7 test}///////////////////////////////////////////////////////MHrefV.prototype.href = function (x,y){	//return this.hrefData.replace(" ",",")+"/"+this.hrefAr[this.i++]; // should work want res then inc i
	return this.hrefAr[this.i++];}/////////////////////////////////////////////////////