$(document).ready( function () {
	funcs = [];
	funcs.push("getCities");
	funcs.push("registerType1");
	funcs.push("registerType2");
	funcs.push("registerType3");
	funcs.push("ToggleListing");
	funcs.push("searchGetCities");
	funcs.push("getBanners");

	for(i=0;i<funcs.length; i++)
	{
		f = funcs[i];
//		eval("x_" + f + " = function() { loadingScreen(); return xajax.request( { xjxfun: '" + f + "' }, { parameters: arguments } ); };");
		eval("x_" + f + " = function() { return xajax.request( { xjxfun: '" + f + "' }, { parameters: arguments } ); };");
	}
});