showing = false;
newColor = '#666666';
newBgColor = '#FFCC00';
newBgImg = null;

oldColor = null;
oldBgColor = null;
oldBgImg = null;

function showMenu(obj,showObj,menuType,nClr,nBgImg,nBgClr)
{
	showObj = eval(showObj);
	if(nClr) 
	{
		newColor = nClr;
		oldColor = obj.style.color;
	}
	if(nBgClr) 
	{
		newBgColor = nBgClr;
		oldBgColor = obj.style.backgroundColor;
	}
	if(nBgImg) 
	{
		newBgImg = nBgImg;
		oldBgImg = obj.style.backgroundImage;
	}	
	
	obj.style.color = newColor;
	obj.style.backgroundColor = newBgColor;
	if(newBgImg!=null) obj.style.backgroundImage = 'url('+newBgImg+')';	
	
	if(showObj!=null && !showing)
	{
		showObj.style.display = "";
		if(document.all)
		{
			if(menuType==null)
			{
				showObj.style.left = obj.offsetLeft;
				showObj.style.top = obj.offsetTop + obj.offsetHeight;
			}
			else
			{
				showObj.style.left = obj.offsetLeft + obj.offsetWidth + 1;
				showObj.style.top = obj.offsetTop;
			}
		}
		else
		{
			myLeft = (screen.width - 799)/2;
			if(menuType==null)
			{
				showObj.style.left = obj.offsetLeft + myLeft;
				showObj.style.top = obj.offsetTop + obj.offsetHeight;
			}
			else
			{
				showObj.style.left = obj.offsetLeft + obj.offsetWidth + myLeft + 5;
				showObj.style.top = obj.offsetTop + 148;
			}
		}
		showing = true;
	}
	prevObj = obj;
}

function hideMenu(obj,showObj)
{
	showObj = eval(showObj);
	if(showObj!=null && showing) 
	{
		showing = false;
		showObj.style.display = 'none';
		if(prevObj != null) 
		{
			if(oldColor != null) prevObj.style.color = oldColor;
			if(oldBgColor != null) prevObj.style.backgroundColor = oldBgColor;
			if(oldBgImg != null) prevObj.style.backgroundImage = oldBgImg;
		}
	}
}
function showMe(obj)
{
	if(!showing) 
	{
		obj.style.display = '';
		showing = true;
		if(prevObj!=null)
		{
			prevObj.style.color = newColor;
			prevObj.style.backgroundColor = newBgColor;
			if(newBgImg!=null) prevObj.style.backgroundImage = 'url('+newBgImg+')';
		}
	}
}

function hideMe(obj)
{
	if(showing)
	{
		showing = false;
		obj.style.display = 'none';
		if(prevObj!=null) 
		{
			if(oldColor != null) prevObj.style.color = oldColor;
			if(oldBgColor != null) prevObj.style.backgroundColor = oldBgColor;
			if(oldBgImg != null) prevObj.style.backgroundImage = oldBgImg;
		}
	}
}

snewColor = null;
snewBgColor = null;
snewBgImg = null;

soldColor = null;
soldBgColor = null;
soldBgImg = null;

function changeColor(obj,snClr,snBgImg,snBgClr)
{
	snewColor = snClr;
	snewBgColor = snBgClr;
	snewBgImg = snBgImg;
	
	if(snewColor != null) 
	{
		soldColor = obj.style.color;
		obj.style.color = snewColor;
	}
	if(snewBgColor != null) 
	{
		soldBgColor = obj.style.backgroundColor;
		obj.style.backgroundColor = snewBgColor;
	}
	if(snewBgImg != null) 
	{
		soldBgImg = obj.style.backgroundImage;
		obj.style.backgroundImage = 'url('+snewBgImg+')';
	}
	
}

function restoreColor(obj)
{
	if(soldColor != null) obj.style.color = soldColor;
	if(soldBgColor != null) obj.style.backgroundColor = soldBgColor;
	if(soldBgImg != null) obj.style.backgroundImage = soldBgImg;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->