// =================================
// MouseOver Control Image Functions
// =================================

// SwapImgRestore
// sets a control's image back to the default
// o = control that will have its standard image restored
function swapImgB(o) 
{
	var a = D.arImgs;
	if(typeof(a)==U) return;
	if(typeof(o.i)!=U)
		o.src = a[o.i].src;
}//swapImgB

// SwapImage
// sets a control's image to the alternate
// o = control that will have its image changed
function swapImg(o)
{
	var a = D.arImgs;
	if(typeof(a)==U) return;
	if(typeof(o.ai)!=U)
		o.src = a[o.ai].src;
}//swapImg
