/*
 * UOSOLUTIONS 1.0.0 - New Javascript
 *
 * Copyright (c) 2009 Rolando Romero (kimono.com.ar)
 * GPL LICENSE
 *
 * $Date: 2009-09-20 00:00:00 -0300
 *
 */

shellUni.Loading = ({
	Initialize: function(){
		/* Constructor */
		//$("body").append("<div id=\"loader\" class=\"ajaxloading\"><div><img src=\"images/ajax-loader2.gif\" width=\"16\" height=\"16\" align=\"top\" /></div><div><h1>Cargando...</h1></div></div>");
	},
	Ready: function(){
		this.StartLoad();
		if (document)
		{
			this.StopLoad();
		}
	},
	StartLoad: function(){
		$("#loader").fadeIn("slow");
	},
	StopLoad: function(){
		$("#loader").fadeOut("slow");
	}
	
});
