/******************************************************************************
-------------------------------------------------------------------------------
  PROJECT: 		PLW Locker
  AUTHOR:		mud(tm)
  DATE:			11/19/2006
  COPYRIGHT: 	(c) 2006, PLW.
  REQUIRES:		prototype.js
-------------------------------------------------------------------------------
  application.js
-------------------------------------------------------------------------------
******************************************************************************/

function onScheduleLoad(){
	
	var tds = document.getElementsByClassName("day");
	
	
	for (var i=0; i< tds.length; i++){
		tds[i].onmouseup = select;
	}
}
function select(evt){


evt.currentTarget.style.background="#ccccff"

	evt.stopPropagation();
}