function DisplayAbout()
{
	contact.style.display = 'none';
	services.style.display = 'none';
//	news.style.display = 'none';
	pictures.style.display = 'none';
	about.style.display = 'inline';
}

function DisplayAlbums()
{
	about.style.display = 'none';
	contact.style.display = 'none';
	services.style.display = 'none';
//	news.style.display = 'none';
	pictures.style.display = 'none';
	albums.style.display = 'inline';
}

function DisplayContact()
{
	about.style.display = 'none';
	services.style.display = 'none';
//	news.style.display = 'none';
	pictures.style.display = 'none';
	contact.style.display = 'inline';
}

function DisplayNews()
{
	contact.style.display = 'none';
	about.style.display = 'none';
	services.style.display = 'none';
	pictures.style.display = 'none';
	news.style.display = 'inline';
}

function DisplayServices()
{
	contact.style.display = 'none';
	about.style.display = 'none';
//	news.style.display = 'none';
	pictures.style.display = 'none';
	services.style.display = 'inline';
}

function DisplayPicture( path , image )
{
	image = path + image;
	picture.src = image;
}

function NotYet()
{
	alert('This function has not yet been implemented');
	
}


