function blinklink()
{
	if (document.getElementById('blink_hyperlink_init') != null)
	{
		if (!document.getElementById('blink_hyperlink_init').style.color)
			{
			document.getElementById('blink_hyperlink_init').style.color="red";
			}
		if (document.getElementById('blink_hyperlink_init').style.color=="red")
			{
			document.getElementById('blink_hyperlink_init').style.color="blue";
			}
		else
			{
			document.getElementById('blink_hyperlink_init').style.color="red";
			}
	}

    if (document.getElementById('blink_hyperlink_adoptions') != null)
	{
		if (!document.getElementById('blink_hyperlink_adoptions').style.color)
			{
			document.getElementById('blink_hyperlink_adoptions').style.color="red";
			}
		if (document.getElementById('blink_hyperlink_adoptions').style.color=="red")
			{
			document.getElementById('blink_hyperlink_adoptions').style.color="blue";
			}
		else
			{
			document.getElementById('blink_hyperlink_adoptions').style.color="red";
			}
	}
	else 
	{
		if (document.getElementById('blink_header_adoptions') != null)
		{
			if (!document.getElementById('blink_header_adoptions').style.color)
				{
				document.getElementById('blink_header_adoptions').style.color="red";
				}
			if (document.getElementById('blink_header_adoptions').style.color=="red")
				{
				document.getElementById('blink_header_adoptions').style.color="blue";
				}
			else
				{
				document.getElementById('blink_header_adoptions').style.color="red";
				}
		}
		
		if (document.getElementById('blink_footer_adoptions') != null)
		{
			if (!document.getElementById('blink_footer_adoptions').style.color)
				{
				document.getElementById('blink_footer_adoptions').style.color="red";
				}
			if (document.getElementById('blink_footer_adoptions').style.color=="red")
				{
				document.getElementById('blink_footer_adoptions').style.color="blue";
				}
			else
				{
				document.getElementById('blink_footer_adoptions').style.color="red";
				}
		}
	}
				
	timer=setTimeout("blinklink()",900);
}

function stoptimer()
{
	clearTimeout(timer);
}

