function showbox(){
$("#box1").show("slow");
$('#box2b').hide("slow");
$('#box3b').hide("slow");
$(document).click(function(){
$('#box1').hide("slow");
})
}
function showbox2(){
$("#box2b").show("slow");
$('#box1').hide("slow");
$('#box3b').hide("slow");
$(document).click(function(){
$('#box2b').hide("slow");
})
}
function showbox3(){
$("#box3b").show("slow");
$('#box1').hide("slow");
$('#box2b').hide("slow");
$(document).click(function(){
$('#box3b').hide("slow");
})
}
