_addEventListener(window, 'load', function(){addRollovers()}, false);


function addRollovers(){
	var home = document.getElementById('home');
	home.onmouseover = function(){document.getElementById('homeActiveIndicator').style.visibility = "visible"};
	home.onmouseout = function(){document.getElementById('homeActiveIndicator').style.visibility = "hidden"};
}
