var string = {}


string.concat = function ( s1, s2 ) {
	return ""+s1 + ""+s2;
}

