var Establecimiento = 
{
	mostrarEstablecimiento: function(id)
	{
		jq.ajax(
		{
			async: true,
			type: "POST",
			dataType: "html",
			contentType: "application/x-www-form-urlencoded",
			url: "info_establecimiento.php",
			data: "id=" + id,
			beforeSend: function()
			{
				jq("#info-establecimiento").show().html("<img src='img/loading.gif' />");
			},
			success: function(res)
			{
				jq("#info-establecimiento").show().fadeIn(1000).html(res);
			},
			timeout: 5000,
			error: function(err)
			{
				alert(err);
			}
		});
	},
	
	ocultarEstablecimiento: function()
	{
		jq("#info-establecimiento").hide().html("");
	}
}
