function MouseAction() {
	var current_obj = window.event.srcElement;
	if (current_obj.tagName == "IMG")
		ImgAction(current_obj);
	if (current_obj.tagName == "A")
		LinkAction(current_obj);
	
}
function ImgAction(obj)
{
	if (obj.id == "btnHome")
	{
		if (obj.src == "http://www.city.windsor.on.ca/home/images/home3.gif")
			obj.src = "http://www.city.windsor.on.ca/home/images/homeover.gif";
		else
			obj.src = "http://www.city.windsor.on.ca/home/images/home3.gif";
	}
	if (obj.id == "btnLinks")
	{
		if (obj.src == "http://www.city.windsor.on.ca/home/images/links.gif")
			obj.src = "http://www.city.windsor.on.ca/home/images/linkover.gif";
		else
			obj.src = "http://www.city.windsor.on.ca/home/images/links.gif";
	}
	if (obj.id == "btnSearch")
	{
		if (obj.src == "http://www.city.windsor.on.ca/home/images/template/searchbtn.gif")
			obj.src = "http://www.city.windsor.on.ca/home/images/template/searchbtnover.gif";
		else
			obj.src = "http://www.city.windsor.on.ca/home/images/template/searchbtn.gif";
	}
}

function LinkAction(obj)
{	
	if (obj.className == "bar")
	{
		if (obj.style.color == "#cc0000" || obj.style.color == "")
		obj.style.color = "white";
		else
		obj.style.color = "#cc0000";
	}
	
	if (obj.name == "")
	{
		if (obj.style.textDecorationUnderline == true)
			obj.style.textDecorationUnderline = false;
		else
			obj.style.textDecorationUnderline = true;
	}
}

document.onmouseover = MouseAction;
document.onmouseout = MouseAction;
