$(function(){
 $('#browser li ul').not('.opened').hide();
 $('#browser li a').click(function() {
  var checkElement = $(this).next();
  if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
   return false;
  }
  if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
   $('#browser li ul.opened').slideUp('slow');
   $('#browser li ul:visible').slideUp('fast');
   checkElement.slideDown('slow');
   return false;
  }
 });
 $('#browser li a').dblclick(function(){
  location.href = $(this).attr("href");
 });
});
