$(document).ready(function() {	
	$(".right .opener div").hover(
 		 function () {
    		$(this).addClass("hovered");
 		 },
		  function () {
		    $(this).removeClass("hovered");
		  }
	);
	

	
	$(".solutions .maturity .quad").hover(
 		 function () {
    		$(this).addClass("hovered");
 		 },
		  function () {
		    $(this).removeClass("hovered");
		  }
	);
	
	$(".solutions .maturity .tri").hover(
 		 function () {
    		$(this).addClass("hovered");
 		 },
		  function () {
		    $(this).removeClass("hovered");
		  }
	);
	
});

