function swapTabDivs( tabnum )
{
	for( i=1 ; i<=4 ; i++ )
	{
		if( i == tabnum )
		{
			document.getElementById( 'tablink' + i ).className = 'selected';
			document.getElementById( 'tabContent' + i ).className = 'block';
		}
		else
		{
			document.getElementById( 'tablink' + i ).className = 'normaltab';
			document.getElementById( 'tabContent' + i ).className = 'none';
		}
	}
}

