$(document).ready(function(){
	$(".consultancy").hide();
	$(".ebusiness").hide();
	$(".network").hide();
	$(".email").hide();
	$(".partner").hide();
	$(".whyus").hide();
	$(".managment").hide();
	$(".teamwork").hide();
});

function welcome(){
	$(".consultancy").hide();
	$(".ebusiness").hide();
	$(".network").hide();

	$(".welcome").show();
}

function consultancy(){
	$(".welcome").hide();
	$(".ebusiness").hide();
	$(".network").hide();

	$(".consultancy").show();
}

function ebusiness(){
	$(".welcome").hide();
	$(".consultancy").hide();
	$(".network").hide();

	$(".ebusiness").show();
}

function network(){
	$(".welcome").hide();
	$(".consultancy").hide();
	$(".ebusiness").hide();

	$(".network").show();
}

function adress(){
	$(".email").hide();
	$(".adress").show();
}

function email(){
	$(".adress").hide();
	$(".email").show();
}

function profile(){
	$(".partner").hide();
	$(".whyus").hide();
	$(".managment").hide();
	$(".teamwork").hide();
	$(".profile").show();
}

function partner(){
	$(".partner").show();
	$(".whyus").hide();
	$(".managment").hide();
	$(".teamwork").hide();
	$(".profile").hide();
}

function whyus(){
	$(".partner").hide();
	$(".whyus").show();
	$(".managment").hide();
	$(".teamwork").hide();
	$(".profile").hide();
}

function managment(){
	$(".partner").hide();
	$(".whyus").hide();
	$(".managment").show();
	$(".teamwork").hide();
	$(".profile").hide();
}

function teamwork(){
	$(".partner").hide();
	$(".whyus").hide();
	$(".managment").hide();
	$(".teamwork").show();
	$(".profile").hide();
}
