/*
 * 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.Content = ({
	Initialize: function(){
		/* Constructor */
	},
	Ready: function(link, cont){
		$.ajax({
			url: link, 
			cache: false, 
			beforeSend: function() {
					$("#loader").fadeIn("slow");
			},
			success: function(html){
				$("#"+cont).html(html);
				shellUni.Link.Ready();
			},
			complete: function() {
					$("#loader").fadeOut("slow");
			}
		});
	}
});

