// JavaScript Document
function getUrlAndUpdate(theurl, thediv){
	
	if($('todays_events')){
		$('todays_events').remove();
	}
	
	new Ajax(theurl, {
		method: 'get',
		update: $(thediv),
		evalScripts: true
	}).request();
	
}

function getUrlAndUpdateDiv(theurl, thediv){
	getUrlAndUpdate(theurl, thediv);
}
