Ext.BLANK_IMAGE_URL = 's.gif';
Ext.onReady(function(){
	var upDate = new Ext.get("render-index");
	var upDateStop = upDate.getUpdateManager();
	upDateStop.showLoadIndicator = false;

upDate.load({
	url: "index-load.php",
	scripts: true,
	text :'MyGlobeShop Loading...',
	callback: function(){
		Ext.get('loading').fadeOut({remove:true});
		}
	});

});
