function switchto(elem)
{
	//  Added 2 new div elements to this javascript based CSS Styling:
	//  Basically all of them get set to: document.getElementById('contact').style.display = 'none';
	document.getElementById('about').style.display = document.getElementById('photos').style.display = document.getElementById('videos').style.display = document.getElementById('twitter').style.display = document.getElementById('resume').style.display = document.getElementById('contact').style.display = 'none';
	document.getElementById(elem).style.display = 'inline';
	if (elem == 'about')
	{
		triangle_margin = '10px 54px 0 0';
	}
	else if (elem == 'photos')
	{
		triangle_margin = '10px 164px 0 0';
	}
	else if (elem == 'videos')
	{
		triangle_margin = '10px 276px 0 0';
	}
	else if (elem == 'twitter')
	{
		triangle_margin = '10px 389px 0 0';
	}
	else if (elem == 'resume')
	{
		triangle_margin = '10px 504px 0 0';
	}
	else if (elem == 'contact')
	{
		triangle_margin = '10px 621px 0 0';
	}	
	else
	{
		triangle_margin = '10px 54px 0 0';
	}
	document.getElementById('triangle').style.margin = triangle_margin;
}

function clearField(thisField, defaultText) {
	
	if (thisField.value == defaultText) {
		thisField.value = "";
	}
}
function resetField(thisField, defaultText) {
	if (thisField.value == "") {
		thisField.value = defaultText;
	}
}
