$(document).ready(function(){
	$('ul.investors li:even').addClass('odd');
	function hideAll() {
		$('#historic-stock-lookup').parent().hide();
		$('#investment-calculator').parent().hide();
		$('#stock-information').parent().hide();
	}
	$('#historic-stock-lookup').parent().hide();
	$('#investment-calculator').parent().hide();
	$('#related h5 a').each(function(){
		var $href = $(this).attr('href');
		$(this).click(function(){
			hideAll();
			$('#related h5 a').removeClass('active');
			$(this).addClass('active');
			$($href).parent().fadeIn();
			return false;
		});
	});
});