/* Call this function when a:hover on big_bugs id                 */
/* swaps out the mission statement image banner with bigbugs info */
function onBigBugsMouseOver()
{
	if (document.getElementById)
	{
		if (document.getElementById('big_bugs') && 
			document.getElementById('vision_statement'))
		{
			bb = document.getElementById('big_bugs')
			vs = document.getElementById('vision_statement')
			vs.style.backgroundImage = "url(homepage_BBmouseover.top.png)"
			vs.style.width = "429px"
			vs.style.height = "112px"
			vs.padding = "12px 0 0 1px"
		}
	}
}


