// JavaScript Document
/*
simple mouse over function

example:
<img src="images/nav-about.gif" id="nav-about" onmouseover="mo('images/nav-about-omo.gif','nav-about')" onmouseout="mo('images/nav-about.gif','nav-about')">
<img src="images/nav-about-omo.gif" style=\"display:none;\" />

Set id in the tag
place the source and id in the function
add the second imgae with a css to not display to preload the image.
*/

function mo(newsrc,id)
{
	var pic;
	document.getElementById(id).src=newsrc;
}

