
function mouseOver( oColor )
{
	var oSrc = window.event.srcElement;
	oSrc.style.color	= oColor;
	oSrc.style.cursor	= 'hand';
	oSrc.style.textDecoration	= 'underline';
}

function mouseOut( oColor )
{
	var oSrc = window.event.srcElement;
	oSrc.style.color	= oColor;
	oSrc.style.cursor	= '';
	oSrc.style.textDecoration = 'none';
}

function onClick( oType, oGenus )
{
    window.navigate( "http://localhost/"+oType.toLowerCase()+"/"+oGenus+"/index.html" );
}
  
