$(document).ready(function(){
	$('#office-tab > a').click(function(e){
		var target = e.target.target;
		$('#office-tab > a').removeClass('active');
		$('#'+target+'-tab').addClass('active');
		$('#office > div').hide();
		$('#'+target+'-div').show();
		return false;
	});
});
