// JavaScript Document

//cross browser//
$(document).ready(function(){
	$('#schedLink').show()
	$('#estimate').hide();
	$('#lungs').hide();
	$('#way').hide();

	$('#schedLink').click(function()
	{
			$('#sched').show('slow');
			$('#estimate').hide('slow');
			$('#lungs').hide('slow');
			$('#way').hide('slow');
			
			
		
		return false;
	}
	);
	
	$('#estimateLink').click(function()
	{
		$('#sched').hide('slow',function()
		{
			$('#estimate').show('slow');
			$('#lungs').hide('slow');
			$('#way').hide('slow');
		});		
		
		return false;
	}
	);
	
	$('#lungsLink').click(function()
	{
		$('#estimate').hide('fast',function()
		{
			$('#lungs').show('slow');
			$('#sched').hide('slow');
			$('#way').hide('slow');
		});
		return false;
	}
	);
	
	$('#wayLink').click(function()
	{	
		
		$('#lungs').hide('slow',function()
		{
			$('#way').show('slow');
			$('#sched').hide('slow');
			$('#estimate').hide('slow');
	
		});		
		
		return false;
	}
	);
	
})<!--ready function-->
	

