
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();}
}

function toggleDiv($id){

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

