/*
###############################################################

minical.js

Rollover functions for the minicalendar

###############################################################
*/
	
	function highlightCell(element) {
	
		element.className = 'highlight_cell';

	}

	
	
	function resetCell(element, classname) {
		
		element.className = classname;
	}

