
function hideVisible(){

     if ($("#one").is(":visible")){$('#one').hide();}
     if ($("#two").is(":visible")){$('#two').hide();}
     if ($("#three").is(":visible")){$('#three').hide();}
     if ($("#four").is(":visible")){$('#four').hide();}
     if ($("#five").is(":visible")){$('#five').hide();}
}

function toggleDiv($id){

     switch ($id){
          case 'one':
               $("#one").show("slow");
               break;
          case 'two':
               $("#two").show("slow");
               break;
          case 'three':
               $("#three").show("slow");
               break;
	  case 'four':
               $("#four").show("slow");
               break;
	  case 'five':
               $("#five").show("slow");
               break;
          default :
               alert("No Such Div");
               break;
     }
}

