// Esegue lo script non appena il documento č stato caricato dal browser 
$(document).ready(function(){
	
	var page_id = $("#page_id").val();
	
	if(page_id==9){
	
		//pagina prodotti
	
		var baseHeight = 112;
	
		//prodotti
		var max=500;
		
		for(var i=0; i<5; i++){
			
			//scelgo la colonna prodotti pių alta per determinare l'altezza della pagina
		
			var columnHeight=$("#products-col-"+i).height();
		
			if(columnHeight>max){
				max = columnHeight;			
			}
	
		}
		
		$("#products-col-sep-1").height(max);
		$("#products-col-sep-2").height(max);
		$("#products-col-sep-3").height(max);
		$("#products-col-sep-4").height(max);
		$("#products-col-sep-5").height(max);
		
		$("#sep1").height(baseHeight+max+20);
		$("#sep2").height(baseHeight+max+20);
	
	}
	
	$("#footer-description").html($("#seo-text").html());
	
})
