

function domouseenter(obj)
	{
	obj.style.backgroundColor="#00a5ef"
	}
	
function domouseout(obj)
	{
	obj.style.backgroundColor="#00a5ef"
	}


function domouseclick(obj)
	{
	restoreallrows()
	obj.style.color="#ff9933"
	obj.style.backgroundColor="#00a5ef"
	 obj.style.fontSize=11
	}

function restoreallrows()
	{
	var array = document.getElementsByTagName("a")
	var len = array.length
	for ( var i = 0 ; i < len ; i++ )
		{ 
		array[i].style.color='white'
		array[i].style.fontSize=11
		 }
	 //'#0086CE'
	}

