var trustLinks = function() {
	var wvustrust = document.getElementById('wvustrust');
	wvustrust.onmouseover = function() {
		document.getElementById('wvusaccountabilitylinks').style.left='auto';
	}
	wvustrust.onmouseout = function() {
		document.getElementById('wvusaccountabilitylinks').style.left='-999em';
	}
}

if (window.attachEvent) window.attachEvent("onload", trustLinks);