function navToggle(div_id,obj)
{
	if(document.getElementById('nav'+div_id).style.display == 'none')
	{
		document.getElementById('nav'+div_id).style.display='';
		if(obj.src.substring(obj.src.length - 9) == '_over.jpg')
			obj.src = obj.src.substring(0, obj.src.length - 9)+'_on.jpg';
		else
			obj.src = obj.src.substring(0, obj.src.length - 4)+'_on.jpg';
	}
	else
	{
		document.getElementById('nav'+div_id).style.display='none';
		obj.src = obj.src.substring(0, obj.src.length - 7)+'.jpg';
	}
}
function swapNav(obj)
{
	if(obj.src.substring(obj.src.length - 7) != '_on.jpg')
		obj.src = obj.src.substring(0, obj.src.length - 4)+'_over.jpg';
}
function swapNavBack(obj)
{
	if(obj.src.substring(obj.src.length - 7) != '_on.jpg' && obj.src.substring(obj.src.length - 9) == '_over.jpg')
		obj.src = obj.src.substring(0, obj.src.length - 9)+'.jpg';
}
imgPreLoader(new Array(webroot+'img/nav/about_on.jpg',webroot+'img/nav/arts_on.jpg',webroot+'img/nav/partners_on.jpg'));