Two answers for you. The first is the hardest, it trys to do all the fade ins and out at the same time. What I did instead of fading thee divs I put the dive that had to go in a master div and faded that out. And put the one that you wanted to fade in behind the master and it just appears as the master fades out. Had to use position:absolute; which I don't like to do.
Code:
<body>
<div id="master" style="width: 360px;height: 250px; float:left; position:absolute; left:0px; z-index: 100; display: block;">
<div id="mine" style="width: 120px;height: 250px; background-color:blue;float:left; display: block;"></div>
<div id="yours" style="width: 120px;height: 250px; background-color:red;float:left;display: block;"></div>
<div id="ours" style="width: 120px;height: 250px; background-color:white;float:left;display: block;"></div>
</div>
<div style="width: 120px;height: 250px; position: absolute;left: 240px; z-index: 50; background-color:green;float:left;display: block;"></div>
<div style="clear:both;">
<input type="button" style="position:absolute; left:0px;top: 266px;" onclick="fadeOut('master');" value="PUSH" />
</div>
</body>
If you don't care about them fading together than you can do this:
Code:
<body>
<div id="mine" style="width: 120px;height: 250px; background-color:blue;float:left; display: block;"></div>
<div id="yours" style="width: 120px;height: 250px; background-color:red;float:left;display: block;"></div>
<div id="ours" style="width: 120px;height: 250px; background-color:green;float:left;display: none;"></div>
<div style="clear:both;">
<input type="button" onclick="fadeOut('mine');fadeOut('yours');fadeIn('ours');" value="PUSH" />
</div>
</body>