function initPage()
{
	var divs = document.getElementsByTagName("div");
	for (var i=0; i<divs.length; i++)  {
		if (divs[i].className == "highlight")  {
			divs[i].onmouseover = function()
			{
			this.className += " high-lighted";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" high-lighted", "");
			}
		}
		if (divs[i].className == "tab-item")  {
			divs[i].onmouseover = function()
			{
			this.className += " tab-item-hover";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" tab-item-hover", "");
			}
		}
		if (divs[i].className == "portf-item")  {
			divs[i].onmouseover = function()
			{
			this.className += " portf-item-hover";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" portf-item-hover", "");
			}
		}
		if (divs[i].className == "services-top")  {
			divs[i].onmouseover = function()
			{
			this.className += " services-top-hover";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" services-top-hover", "");
			}
		}
		if (divs[i].className == "team-item")  {
			divs[i].onmouseover = function()
			{
			this.className += " team-item-hover";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" team-item-hover", "");
			}
		}
/*
		if (divs[i].className == "techno-item")  {
			divs[i].onmouseover = function()
			{
			this.className += " techno-item-hover";
			}
			divs[i].onmouseout = function()
			{
			this.className = this.className.replace(" techno-item-hover", "");
			}
		}
*/
	}
	var aas = document.getElementsByTagName("a");
	for (var i=0; i<aas.length; i++)  {
		if (aas[i].className == "button")  {
			aas[i].onmouseover = function()
			{
			this.parentNode.className += " techno-item-hover";
			}
			aas[i].onmouseout = function()
			{
			this.parentNode.className = this.parentNode.className.replace(" techno-item-hover", "");
			}
		}
	}
}

if (window.addEventListener)
	window.addEventListener("load", initPage, false);
else if (window.attachEvent)
	window.attachEvent("onload", initPage);