function switchto(elem)
{
	document.getElementById('about').style.display = document.getElementById('photos').style.display = document.getElementById('videos').style.display = document.getElementById('twitter').style.display = document.getElementById('wordpress').style.display = document.getElementById('lastfm').style.display = 'none';
	document.getElementById(elem).style.display = 'inline';
	if (elem == 'about')
	{
		triangle_margin = '10px 56px 0 0';
	}
	else if (elem == 'wordpress')
	{
		triangle_margin = '10px 156px 0 0';
	}
	else if (elem == 'twitter')
	{
		triangle_margin = '10px 260px 0 0';
	}
	else if (elem == 'lastfm')
	{
		triangle_margin = '10px 370px 0 0';
	}
	else if (elem == 'spare')
	{
		triangle_margin = '10px 389px 0 0';
	}
	else
	{
		triangle_margin = '10px 54px 0 0';
	}
	document.getElementById('triangle').style.margin = triangle_margin;
}
