function showHide(theid){

	var switch_id = document.getElementById(theid);

	
	if(switch_id.className != 'show')
	{
	   switch_id.className = 'show';
	}
	else
	{
	   switch_id.className = 'hide';
	}
	
	
} // END showHide