function Profile()
{
	var collection = document.getElementsByName('profileitem')
				
	for( i = 0; i < collection.length; i++ )
	{
		if( collection[ i ].profile == 'True' )
		{
			collection[ i ].parentNode.className = 'selected';
		}
	}
}