
$(document).ready(function() {
	
	tiendaAjax();

});

function tiendaAjax(){
	$.ajax({
		contentType: "application/x-www-form-urlencoded",
		type: "POST",
		url: "/tienda.php",
		//data: params,
		dataType: "html",
		success: function(datos){
			$('div#cnt-shop').html(datos);
			//$('div#cnt-shop').html('La carga ha sido un exito');
		},
		error: function(objeto, quepaso, otroobj){
			$('div#cnt-shop').html('Se ha producido un error al cargar la tienda.');
		}
	});
}

