// JavaScript Document
$(document).ready(function() {
	// hides the slickbox as soon as the DOM is ready
	// (a little sooner than page load)
	$('#development').hide();
	$('#operations').hide();
	$('#tab-financial').addClass("active");
	// toggles the slickbox on clicking the noted link
	$('a#tab-financial').click(function() {
		$(this).addClass("active");
		$('#financial').show();
		$('#development').hide();
		$('#operations').hide();
		$('#tab-development').removeClass("active");
		$('#tab-operations').removeClass("active");
	return false;
	});
	$('a#tab-development').click(function() {
		$(this).addClass("active");
		$('#financial').hide();
		$('#development').show();
		$('#operations').hide();
		$('#tab-financial').removeClass("active");
		$('#tab-operations').removeClass("active");
	return false;
	});
	$('a#tab-operations').click(function() {
		$(this).addClass("active");
		$('#financial').hide();
		$('#development').hide();
		$('#operations').show();
		$('#tab-financial').removeClass("active");
		$('#tab-development').removeClass("active");
return false;
	});
});
