//-------------------------------------------------------------------------------------------------------
//	Image Swap
//-------------------------------------------------------------------------------------------------------
function swapImg(id,img)
{
	if( document.getElementById)
	{
		obj	= document.getElementById(id);
		obj.setAttribute( 'src', img );
	}
}

function delayOff(id, img)
{
	if( document.getElementById)
	{
		obj	= document.getElementById(id);
		obj.setAttribute( 'src', img );
	}
	setTimeout("delayOff", 10000);
}

function swapVisibility(id, vis)
{
	if( document.getElementById)
	{
		obj	= document.getElementById(id);
		obj.style.visibility = vis;
	}
	
}

function peopleHover(obj) 
{
	obj.style.color = "#450";
}

function peopleOff(obj)
{
	obj.style.color = "#9A6";

}

