function initHome() 
{
	var po = document.getElementById('payonline');
	var ba = document.getElementById('boiladvisory');
	var si = document.getElementById('systemimprovements');
	var nc = document.getElementById('inthenews');
	var ow = document.getElementById('otherwaystopay');
	
	po.onmouseover = function() { moveIn(this.id); };
	po.onmouseout = function() { moveOut(this.id); };
	ba.onmouseover = function() { moveIn(this.id); };
	ba.onmouseout = function() { moveOut(this.id); };
	si.onmouseover = function() { moveIn(this.id); };
	si.onmouseout = function() { moveOut(this.id); };
	nc.onmouseover = function() { moveIn(this.id); };
	nc.onmouseout = function() { moveOut(this.id); };
	ow.onmouseover = function() { document.getElementById('payonline').src='images/home/payonline.gif';};
	ow.onmouseout = function() { moveOut('payonline'); };
}

addLoadListener(initHome);