// JavaScript Document

function navigation_hover(id, type)
{
	if (type == 1)
	{
		document.getElementById("nav-icon-"+id).src = "theme/images/navigation-arrow-hover.png";
		document.getElementById("nav-link-"+id).align = "right";
	}
	
	if (type == 2)
	{
		document.getElementById("nav-icon-"+id).src = "theme/images/navigation-arrow.png";
		document.getElementById("nav-link-"+id).align = "left";
	}
}
