

var Home = 
{
	Load : function()
	{
		var allCategories = document.getElementsByClassName("defCategory");
	
		for (var i = 0; i <  allCategories.length  ; i++)  {
			var thisCategory = allCategories[i];
			
				thisCategory.onmouseover = function(){
					this.className = this.className + " hover";		
				}
				
				thisCategory.onmouseout = function(){
					this.className = this.className.replace("hover", "");		
				}
				
				thisCategory.onclick = function(){
					var theAnchor = this.getElementsByTagName("a")[0];
					var theHref = theAnchor.getAttribute("href");
					location.href = theHref;
				}	
		
		}			
	}
}

window.addToOnload(Home.Load);