﻿$(document).ready(function () {
	$.get("/store/json/?runasynchronous=true", function (result) {
		LoadAttribute();
	});
});

function LoadAttribute() {
	$.get("/store/json/?loadattribute=true", function (result) {
		if (result != "")
			LoadAttribute();
	});
}
