var Element = Element || function() {
	this.getAttribute = function (attribute) {
		if (attribute == "class") attribute = "className";
		if (attribute == "for") attribute = "htmlFor";
		return this[attribute];
	}

	this.setAttribute = function (attribute, value) {
		if (attribute == "class") attribute = "className";
		if (attribute == "for") attribute = "htmlFor";
		this[attribute] = value;
	}
}
