// Pagina home
$(document).ready(function(){
	 $('#text').load('/drupal/?q=content/home .mainContent', '', function(response, status, xhr) {
		  if (status == 'error') {
				var msg = "Sorry but there was an error: ";
				$(".content").html(msg + xhr.status + " " + xhr.statusText);
		  }
	 });
});

// home products
$(document).ready(function(){
	 $('#homeProducts').load('/drupal/?q=content/home-products .mainContent', '', function(response, status, xhr) {
		  if (status == 'error') {
				var msg = "Sorry but there was an error: ";
				$(".content").html(msg + xhr.status + " " + xhr.statusText);
		  }
	 });
});


// distributori
$(document).ready(function(){
	 $('#textDistr').load('/drupal/?q=content/distributori .mainContent', '', function(response, status, xhr) {
		  if (status == 'error') {
				var msg = "Sorry but there was an error: ";
				$(".content").html(msg + xhr.status + " " + xhr.statusText);
		  }
	 });
});

// panta rei
$(document).ready(function(){
	 $('#textPR').load('/drupal/catalogo/panta_rei  .view-content', '', function(response, status, xhr) {
		  if (status == 'error') {
				var msg = "Sorry but there was an error: ";
				$(".content").html(msg + xhr.status + " " + xhr.statusText);
		  }
	 });
});

