<!-- 

// homepage mouseover

function m_over(id)
{

	if (document.getElementById)
	{

		var tempObjA =  document.getElementById(id+'a');
		tempObjA.bgColor = '#9C0029';

		var tempObjB =   document.getElementById(id+'b');
		tempObjB.bgColor = '#9C0029';

	}


	if (document.images)
	{
	    imgObj = eval("document.images." + id + "_img");
	    imgObj.src=arrow_a.src;
	}



}


function m_out(id)
{

	if (document.getElementById)
	{

		var tempObjA =   document.getElementById(id+'a');
		tempObjA.bgColor = '#CE0039';

		var tempObjB =   document.getElementById(id+'b');
		tempObjB.bgColor = '#CE0039';

	}


	if (document.images)
	{
		imgObj = eval("document.images." + id + "_img");
		imgObj.src=arrow_p.src;
	}



}


// -->

