// JavaScript Document

	window.onload = function() {
		for(i=2; i<=10; i++)
			if (document.getElementById('b' + i))
				document.getElementById('b' + i).className = 'hide';
	}
	
	function showB(a) {
		for(i=1; i<=10; i++)
		{
			if (a==i)
			{
				if (document.getElementById('b'+i))
					document.getElementById('b'+i).className = 'show';
			}
			else
			{
				if (document.getElementById('b'+i))				
					document.getElementById('b'+i).className = 'hide';
			}
		}
		return false;
	}

