// JavaScript Document
function showNav(cont, id)
{
	var c = document.getElementById(''+cont+'');
	if (c.style.display == 'none')
	{
		id.style.background = 'url(images/arrow_on.jpg) no-repeat 2px 10px';
		id.style.color = '#f47d2f';
		c.style.display = 'inline-block';
	} else {
		id.style.background = 'url(images/arrow_off.jpg) no-repeat 2px 10px';
		id.style.color = '#000000';
		c.style.display = 'none';
	}
}
