// JavaScript Document

$(document).ready( function()
	{							
		$('#content #navi-bg .navigation a, #holder-right #sub-header-right-1 a').click( function() 
			{ 
				switch( $(this).attr('id') ) 
					{
						
						case '5': 
						$('.subnav').hide();
						$('#therapy').fadeIn('slow');
						break;
						
						case '6':
						$('.subnav').hide();
						$('#diagnosis').fadeIn('slow');
						break;
						
						default:
						$('.subnav').fadeOut('slow');
						break;
					}
				
			$('#super-headline').text( $(this).text() );
			
			});
							
	});



