function menuOvr(src,clrOver,page)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
			src.style.backgroundColor=clrOver;

	}
}

function menuDwn(src,clrDwn)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.style.backgroundColor=clrDwn;
	}
}


function menuOut(src,clrOut,page)
{
	if (!src.contains(event.toElement))
	{
		src.style.cursor = 'default';
		src.style.backgroundColor=clrOut;
	}
}






function forsideOvr(src,clrOver,page)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.style.backgroundColor=clrOver;
		src.children.tags('A')[0].style.color = '#FFFFFF';

	}
}



function forsideOut(src,clrOut,page)
{
	if (!src.contains(event.toElement))
	{
		src.style.cursor = 'default';
		src.style.backgroundColor=clrOut;
		src.children.tags('A')[0].style.color = '#000000'; 
	}
}
