function eventCalendarInit() {	
	if(window.console) {
		window.console.log("I think therefore I code!");
	}
	eventCalendarCollapseAll();
}
function eventCalendarPrint() {
	eventCalendarExpandAll();
	window.print();
	return false;
}
function eventCalendarExpandAll() {
	$('eventList').getElementsByClassName("detail").each( 
		function(d) { d.style.display="block"; } 
	);	
}
function eventCalendarCollapseAll() {
	$('eventList').getElementsByClassName("detail").each( 
		function(d) { d.style.display="none"; } 
	);	
}

function eventwindow(url) {
	var newwindow;
	newwindow=window.open(url,'name','height=260,width=500,resizable=no,left=100,top=100');
	if (window.focus) {
		newwindow.focus()
	}
}


addLoadEvent(eventCalendarInit);