// $Id: animate-nav.js,v 1.6 2011-01-19 15:24:22 spacepleb Exp $
$(document).ready(function() {

  //If IE6 no animation
  if ($.browser.msie && $.browser.version.substr(0,1)<7) {
    $("#switch").click(function () {
      $("#folding-nav").toggle();
      return false;
    });
  }
  //All other browsers animate
  else {		     
    $("#switch").click(function () {
      $("#folding-nav").slideToggle(300);
      return false;
    });
  }
  
});

//(C) Copyright Psand Ltd. 2009
