function shinebox()
{
	var box,box02,box03,box04,ii,i;
    box=document.getElementsByTagName('li');
    box02=document.getElementsByTagName('li');
    box03=document.getElementsByTagName('p');
    box04=document.getElementsByTagName('p');
	for(ii=0;ii<box.length;ii++)
	{
		if(/city/.test(box[ii].className))
		{
			box02[ii].onmouseover=function(){shinein(this);};
			box02[ii].onmouseout=function(){shineout(this);};
		}
	}
    for(ii=0;ii<box02.length;ii++)
	{
		if(/news/.test(box02[ii].className))
		{
			box[ii].onmouseover=function(){shineint(this);};
			box[ii].onmouseout=function(){shineoutt(this);};
		}
	}
    for(i=0;i<box03.length;i++)
	{
		if(/channel/.test(box03[i].className))
		{
			box03[i].onmouseover=function(){shinein03(this);};
			box03[i].onmouseout=function(){shineout03(this);};
		}
	}
    for(i=0;i<box04.length;i++)
	{
		if(/ranking/.test(box04[i].className))
		{
			box04[i].onmouseover=function(){shinein03(this);};
			box04[i].onmouseout=function(){shineout03(this);};
		}
	}
}

function shinein(o)
{
	var color;
	color='#ffffff';
	o.style.backgroundColor=color;
}

function shineout(o)
{
	var color;
	color='#f2f2f2';
	o.style.backgroundColor=color;
}

function shineint(o)
{
	var color;
	color='#e3e3e3';
	o.style.backgroundColor=color;
}

function shineoutt(o)
{
	var color;
	color='#f2f2f2';
	o.style.backgroundColor=color;
}

function shinein03(o)
{
	var color;
	color='#000';
	o.style.backgroundColor=color;
}

function shineout03(o)
{
	var color;
	color='#252525';
	o.style.backgroundColor=color;
}
