	//update modules
loadSection = function(el,path,loader,newId){
	

	new Ajax.Updater(el, path, {
					 asynchronous:true, 
					 evalScripts:true, 
					 onSuccess: function() {
						clearLoad(newId);
					 },
					 onFailure: function() {
						$(el).hide(); 
						 
					 }
	
	});

}