/**
 * @author Matthew
 */
function divHover(p_id) {
			document.getElementById(p_id).className = "hover";
		}
		
		function noClass(p_id) {
			document.getElementById(p_id).className = "";
		}