function getContent(from){
	var myAjax = new Ajax.Request(from,{method: 'get', onComplete: handleResponse});
}

function handleResponse(transport){
		document.getElementById("secondColumn").innerHTML = transport.responseText
}
