/* Clickable sidebar boxes on homepage  */

function divlinks() {
		var divTags = document.getElementById('sidebar').getElementsByTagName('div');
		for (var i=0; i<divTags.length; i++) {
			divTags[i].className = 'link';
			divTags[i].onmouseover=function() {
				this.className+=" hover";
			//	this.style.backgroundColor = '#D2E8E6';
			}
			divTags[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" hover\\b"), "");
			}
		} 
}
window.onload = divlinks;

