function toggleLayer(whichLayer)
{
	//document.getElementById(whichLayer).style.display = 'none';
	$(whichLayer).fadeOut();
	
}