I simply take this example from w3school and made some changes hope this will help you
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#Button1").click(function(){
$("#div1").fadeOut();
$("#div2").fadeIn();
});
$("#Button2").click(function () {
$("#div2").fadeOut();
$("#div3").fadeIn();
});
$("#Button3").click(function () {
$("#div3").fadeOut();
});
});
</script>
</head>
<body>
<div id="div1" style="height:80px;background-color:red;"><input id="Button1" type="button" value="button" /></div><br>
<div id="div2" style="height:80px;display:none;background-color:green;"> <input id="Button2" type="button" value="button" /></div><br>
<div id="div3" style="height:80px;display:none;background-color:blue;"> <input id="Button3" type="button" value="button" /></div>
</body>
</html>