// JavaScript Document
$(document).ready(equalize)
$(window).resize(setDivFullHeight)

function equalize(){
	$("#two_col_left , #two_col_right, #three_col_left, #three_col_mid, #three_col_right").equalHeightColumns()
	setDivFullHeight()
	}
	
function setDivFullHeight(){
	$("#sfondoBianco").height($(document).height());
	}
