//Tab Structure for Investors Reports Page

$(function () {
			var tabContainers = $('div.reports-tab > div');
			tabContainers.hide().filter(':first').show();
			
			$('div.reports-tab ul.tabNavigation a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div.reports-tab ul.tabNavigation a').removeClass('selected');
				$(this).addClass('selected');
				return false;
			}).filter(':first').click();
		});
