// JavaScript Document
/* Home Page Calendar Switchout Function */
function grabEvent(event_id){
	// Grab Event Array
	x_showEventDetails(String(event_id),fillEvent);
}
/* Function to fill event */
function fillEvent(html){
	// Change Title
	$(".homepage-title").remove();
	$(".event_title").append('<h2 class="homepage-title">' + html[0].toUpperCase() + '</h2>');
// The following code isn't working, and is causing the rest of the function not to execute [4/16/2009]
//	sIFR.replaceElement(named({sSelector: "h2.homepage-title",
//							  sFlashSrc: "/sifr/eurostile_bold.swf", sBgColor: "#FFFFFF",
//							  sColor: "#63217F", sWmode: "transparent",
//							  sFlashVars: "textalign=center"}));
	// Change Details
	$(".contentbody").html(html[1]);
}