_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"};

	var thePeoplesAdvocate = document.getElementById('thePeoplesAdvocate');
	thePeoplesAdvocate.onmouseover = function(){document.getElementById('thePeoplesAdvocateActiveIndicator').style.visibility = "visible"};
	thePeoplesAdvocate.onmouseout = function(){document.getElementById('thePeoplesAdvocateActiveIndicator').style.visibility = "hidden"};

	var allahAndAmerica = document.getElementById('allahAndAmerica');
	allahAndAmerica.onmouseover = function(){document.getElementById('allahAndAmericaActiveIndicator').style.visibility = "visible"};
	allahAndAmerica.onmouseout = function(){document.getElementById('allahAndAmericaActiveIndicator').style.visibility = "hidden"};

}
