document.createElementWithAttributes = function(elementType, attributes) {
	newElement = this.createElement(elementType);
	for (var attribute in attributes) {
		newElement.setAttribute(attribute, attributes[attribute]);
	}
	return newElement;
}
