function init() {
	hoverHome();
}
function hoverHome() {
	var divs = document.getElementsByTagName("div");
	for(var q = 0; q < divs.length; q++) {
		if(divs[q].className == "benefit one") {divs[q].onmouseover = function() {this.className = "benefitH oneH";}; divs[q].onmouseout = function() {this.className = "benefit one";} ;}
		if(divs[q].className == "benefit two") {divs[q].onmouseover = function() {this.className = "benefitH twoH";}; divs[q].onmouseout = function() {this.className = "benefit two";} ;}
		if(divs[q].className == "benefit three") {divs[q].onmouseover = function() {this.className = "benefitH threeH";}; divs[q].onmouseout = function() {this.className = "benefit three";} ;}
		if(divs[q].className == "benefit four") {divs[q].onmouseover = function() {this.className = "benefitH fourH";}; divs[q].onmouseout = function() {this.className = "benefit four";} ;}
		if(divs[q].className == "benefit five") {divs[q].onmouseover = function() {this.className = "benefitH fiveH";}; divs[q].onmouseout = function() {this.className = "benefit five";} ;}
		if(divs[q].className == "benefit six") {divs[q].onmouseover = function() {this.className = "benefitH sixH";}; divs[q].onmouseout = function() {this.className = "benefit six";} ;}
		if(divs[q].className == "benefit seven") {divs[q].onmouseover = function() {this.className = "benefitH sevenH";}; divs[q].onmouseout = function() {this.className = "benefit seven";} ;}
		if(divs[q].className == "benefit eight") {divs[q].onmouseover = function() {this.className = "benefitH eightH";}; divs[q].onmouseout = function() {this.className = "benefit eight";} ;}
		if(divs[q].className == "benefit nine") {divs[q].onmouseover = function() {this.className = "benefitH nineH";}; divs[q].onmouseout = function() {this.className = "benefit nine";} ;}
		if(divs[q].className == "benefit ten") {divs[q].onmouseover = function() {this.className = "benefitH tenH";}; divs[q].onmouseout = function() {this.className = "benefit ten";} ;}
		
	}
}
window.onload = init;
