function changeMonth(month){
	url = '../js/changeMonth.php?month='+month;
	new Ajax.Request(url,{onSuccess: changeCal})
}
function changeCal(transport){
  var response = transport.responseText || "no response text";
	document.getElementById('cal').innerHTML = response		
}