function getNames()
{
	LinksCounty = document.getElementById('CountyLinks');
	ImageCounty = document.getElementById('CountyImage');
	
	LinksViewType = document.getElementById('ViewTypeLinks');
	ImageViewType = document.getElementById('ViewTypeImage');
	
	LinksGuests = document.getElementById('GuestsLinks');
	ImageGuests = document.getElementById('GuestsImage');
}

function ShowCounty(id)
{	
	getNames();
	if (LinksCounty.style.display == 'none')
	{		
		ImageCounty.style.display = 'none';
		LinksCounty.style.display = '';
		HideViewType();
		HideGuests();
	}
}

function HideCounty(id)
{
	getNames();
	if (LinksCounty.style.display == '')
	{
		ImageCounty.style.display = '';
		LinksCounty.style.display = 'none';
	}
}


function ShowViewType(id)
{
	getNames();
	if (LinksViewType.style.display == 'none')
	{
		ImageViewType.style.display = 'none';
		LinksViewType.style.display = '';
		HideCounty();
		HideGuests();
	}
}

function HideViewType(id)
{
	getNames();
	if (LinksViewType.style.display ==  '')
	{
		ImageViewType.style.display = '';
		LinksViewType.style.display = 'none';
	}
}

function ShowGuests(id)
{
	getNames();
	if (LinksGuests.style.display == 'none')
	{
		ImageGuests.style.display = 'none';
		LinksGuests.style.display = '';
		HideCounty();
		HideViewType();
	}
}

function HideGuests(id)
{
	getNames();
	if (LinksGuests.style.display ==  '')
	{
		ImageGuests.style.display = '';
		LinksGuests.style.display = 'none';
	}
}